aws-sdk-workspaces 1.111.0 → 1.113.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: 8b3df6db9ef945c6dfc34bf576d923a8fe30a128b8bf56e963358ecba3ad8944
4
- data.tar.gz: 8326a452e5def761169ec428031cde97a28b8409cd381347e4d18d007c9029a2
3
+ metadata.gz: 7f879b5a1e540ac7f31e7379a72f8ee61915ed684e8087abbaf8b44fcfcc27c8
4
+ data.tar.gz: 2626cff6e1a095e7d06568fbfa46cac7ec30b730287c00f26139f99a967474e6
5
5
  SHA512:
6
- metadata.gz: cbb39aedfae4e2fcf2fbb17eeda48e85c998fec62e033c1458e038f302ee3d868c16888ae00d6b7ca5df0a230133661923df2620cd89f7f6d0ac8156474e1bfc
7
- data.tar.gz: edc543bc63475fcb378a910195e011609d100a66c4c33c16d8ead436c660366ff4737eee16b44b19f3b8749945c6dac7c67e4420c4be86a5144eed0f8ac6a3c4
6
+ metadata.gz: 1b5646cf450da343b0eef76d22cf0f50f26ce7d4dc6e5ecc043fdc230c8aad1ac9eb076612f227670391011ae4b8b1b727a915ec8ad7574e083167d41a5e9748
7
+ data.tar.gz: 70a581a16085ce4d49df0245a9b9e00c0ecbecb57c4433909636b229e79193fd40bb1511d96780810207a40847e34a2c92945062556fbc1683562f7d0b3be6f0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.0 (2024-08-26)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for creating and managing directories that use AWS IAM Identity Center as user identity source. Such directories can be used to create non-Active Directory domain joined WorkSpaces Personal.Updated RegisterWorkspaceDirectory and DescribeWorkspaceDirectories APIs.
8
+
9
+ 1.112.0 (2024-08-06)
10
+ ------------------
11
+
12
+ * Feature - Added support for BYOL_GRAPHICS_G4DN_WSP IngestionProcess
13
+
4
14
  1.111.0 (2024-07-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.111.0
1
+ 1.113.0
@@ -2476,6 +2476,9 @@ module Aws::WorkSpaces
2476
2476
  # If you received a `NextToken` from a previous call that was paginated,
2477
2477
  # provide this token to receive the next set of results.
2478
2478
  #
2479
+ # @option params [Array<Types::DescribeWorkspaceDirectoriesFilter>] :filters
2480
+ # The filter condition for the WorkSpaces.
2481
+ #
2479
2482
  # @return [Types::DescribeWorkspaceDirectoriesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2480
2483
  #
2481
2484
  # * {Types::DescribeWorkspaceDirectoriesResult#directories #directories} => Array&lt;Types::WorkspaceDirectory&gt;
@@ -2490,6 +2493,12 @@ module Aws::WorkSpaces
2490
2493
  # workspace_directory_names: ["WorkspaceDirectoryName"],
2491
2494
  # limit: 1,
2492
2495
  # next_token: "PaginationToken",
2496
+ # filters: [
2497
+ # {
2498
+ # name: "USER_IDENTITY_TYPE", # required, accepts USER_IDENTITY_TYPE, WORKSPACE_TYPE
2499
+ # values: ["DescribeWorkspaceDirectoriesFilterValue"], # required
2500
+ # },
2501
+ # ],
2493
2502
  # })
2494
2503
  #
2495
2504
  # @example Response structure
@@ -2505,7 +2514,7 @@ module Aws::WorkSpaces
2505
2514
  # resp.directories[0].dns_ip_addresses[0] #=> String
2506
2515
  # resp.directories[0].customer_user_name #=> String
2507
2516
  # resp.directories[0].iam_role_id #=> String
2508
- # resp.directories[0].directory_type #=> String, one of "SIMPLE_AD", "AD_CONNECTOR", "CUSTOMER_MANAGED"
2517
+ # resp.directories[0].directory_type #=> String, one of "SIMPLE_AD", "AD_CONNECTOR", "CUSTOMER_MANAGED", "AWS_IAM_IDENTITY_CENTER"
2509
2518
  # resp.directories[0].workspace_security_group_id #=> String
2510
2519
  # resp.directories[0].state #=> String, one of "REGISTERING", "REGISTERED", "DEREGISTERING", "DEREGISTERED", "ERROR"
2511
2520
  # resp.directories[0].workspace_creation_properties.enable_work_docs #=> Boolean
@@ -2536,10 +2545,14 @@ module Aws::WorkSpaces
2536
2545
  # resp.directories[0].saml_properties.relay_state_parameter_name #=> String
2537
2546
  # resp.directories[0].certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED"
2538
2547
  # resp.directories[0].certificate_based_auth_properties.certificate_authority_arn #=> String
2548
+ # resp.directories[0].microsoft_entra_config.tenant_id #=> String
2549
+ # resp.directories[0].microsoft_entra_config.application_config_secret_arn #=> String
2539
2550
  # resp.directories[0].workspace_directory_name #=> String
2540
2551
  # resp.directories[0].workspace_directory_description #=> String
2541
- # resp.directories[0].user_identity_type #=> String, one of "CUSTOMER_MANAGED", "AWS_DIRECTORY_SERVICE"
2552
+ # resp.directories[0].user_identity_type #=> String, one of "CUSTOMER_MANAGED", "AWS_DIRECTORY_SERVICE", "AWS_IAM_IDENTITY_CENTER"
2542
2553
  # resp.directories[0].workspace_type #=> String, one of "PERSONAL", "POOLS"
2554
+ # resp.directories[0].idc_config.instance_arn #=> String
2555
+ # resp.directories[0].idc_config.application_arn #=> String
2543
2556
  # resp.directories[0].active_directory_config.domain_name #=> String
2544
2557
  # resp.directories[0].active_directory_config.service_account_secret_arn #=> String
2545
2558
  # resp.directories[0].streaming_properties.streaming_experience_preferred_protocol #=> String, one of "TCP", "UDP"
@@ -3325,7 +3338,9 @@ module Aws::WorkSpaces
3325
3338
  # <note markdown="1"> * Although this parameter is an array, only one item is allowed at
3326
3339
  # this time.
3327
3340
  #
3328
- # * Windows 11 only supports `Microsoft_Office_2019`.
3341
+ # * During the image import process, non-GPU WSP WorkSpaces with Windows
3342
+ # 11 support only `Microsoft_Office_2019`. GPU WSP WorkSpaces with
3343
+ # Windows 11 do not support Office installation.
3329
3344
  #
3330
3345
  # </note>
3331
3346
  #
@@ -3341,7 +3356,7 @@ module Aws::WorkSpaces
3341
3356
  #
3342
3357
  # resp = client.import_workspace_image({
3343
3358
  # ec2_image_id: "Ec2ImageId", # required
3344
- # ingestion_process: "BYOL_REGULAR", # required, accepts BYOL_REGULAR, BYOL_GRAPHICS, BYOL_GRAPHICSPRO, BYOL_GRAPHICS_G4DN, BYOL_REGULAR_WSP, BYOL_REGULAR_BYOP, BYOL_GRAPHICS_G4DN_BYOP
3359
+ # ingestion_process: "BYOL_REGULAR", # required, accepts BYOL_REGULAR, BYOL_GRAPHICS, BYOL_GRAPHICSPRO, BYOL_GRAPHICS_G4DN, BYOL_REGULAR_WSP, BYOL_GRAPHICS_G4DN_WSP, BYOL_REGULAR_BYOP, BYOL_GRAPHICS_G4DN_BYOP
3345
3360
  # image_name: "WorkspaceImageName", # required
3346
3361
  # image_description: "WorkspaceImageDescription", # required
3347
3362
  # tags: [
@@ -4045,6 +4060,12 @@ module Aws::WorkSpaces
4045
4060
  # @option params [String] :user_identity_type
4046
4061
  # The type of identity management the user is using.
4047
4062
  #
4063
+ # @option params [String] :idc_instance_arn
4064
+ # The Amazon Resource Name (ARN) of the identity center instance.
4065
+ #
4066
+ # @option params [Types::MicrosoftEntraConfig] :microsoft_entra_config
4067
+ # The details about Microsoft Entra config.
4068
+ #
4048
4069
  # @option params [String] :workspace_type
4049
4070
  # Indicates whether the directory's WorkSpace type is personal or
4050
4071
  # pools.
@@ -4073,7 +4094,12 @@ module Aws::WorkSpaces
4073
4094
  # ],
4074
4095
  # workspace_directory_name: "WorkspaceDirectoryName",
4075
4096
  # workspace_directory_description: "WorkspaceDirectoryDescription",
4076
- # user_identity_type: "CUSTOMER_MANAGED", # accepts CUSTOMER_MANAGED, AWS_DIRECTORY_SERVICE
4097
+ # user_identity_type: "CUSTOMER_MANAGED", # accepts CUSTOMER_MANAGED, AWS_DIRECTORY_SERVICE, AWS_IAM_IDENTITY_CENTER
4098
+ # idc_instance_arn: "ARN",
4099
+ # microsoft_entra_config: {
4100
+ # tenant_id: "MicrosoftEntraConfigTenantId",
4101
+ # application_config_secret_arn: "SecretsManagerArn",
4102
+ # },
4077
4103
  # workspace_type: "PERSONAL", # accepts PERSONAL, POOLS
4078
4104
  # active_directory_config: {
4079
4105
  # domain_name: "DomainName", # required
@@ -4751,7 +4777,7 @@ module Aws::WorkSpaces
4751
4777
  params: params,
4752
4778
  config: config)
4753
4779
  context[:gem_name] = 'aws-sdk-workspaces'
4754
- context[:gem_version] = '1.111.0'
4780
+ context[:gem_version] = '1.113.0'
4755
4781
  Seahorse::Client::Request.new(handlers, context)
4756
4782
  end
4757
4783
 
@@ -191,6 +191,11 @@ module Aws::WorkSpaces
191
191
  DescribeWorkspaceAssociationsResult = Shapes::StructureShape.new(name: 'DescribeWorkspaceAssociationsResult')
192
192
  DescribeWorkspaceBundlesRequest = Shapes::StructureShape.new(name: 'DescribeWorkspaceBundlesRequest')
193
193
  DescribeWorkspaceBundlesResult = Shapes::StructureShape.new(name: 'DescribeWorkspaceBundlesResult')
194
+ DescribeWorkspaceDirectoriesFilter = Shapes::StructureShape.new(name: 'DescribeWorkspaceDirectoriesFilter')
195
+ DescribeWorkspaceDirectoriesFilterList = Shapes::ListShape.new(name: 'DescribeWorkspaceDirectoriesFilterList')
196
+ DescribeWorkspaceDirectoriesFilterName = Shapes::StringShape.new(name: 'DescribeWorkspaceDirectoriesFilterName')
197
+ DescribeWorkspaceDirectoriesFilterValue = Shapes::StringShape.new(name: 'DescribeWorkspaceDirectoriesFilterValue')
198
+ DescribeWorkspaceDirectoriesFilterValues = Shapes::ListShape.new(name: 'DescribeWorkspaceDirectoriesFilterValues')
194
199
  DescribeWorkspaceDirectoriesRequest = Shapes::StructureShape.new(name: 'DescribeWorkspaceDirectoriesRequest')
195
200
  DescribeWorkspaceDirectoriesResult = Shapes::StructureShape.new(name: 'DescribeWorkspaceDirectoriesResult')
196
201
  DescribeWorkspaceImagePermissionsRequest = Shapes::StructureShape.new(name: 'DescribeWorkspaceImagePermissionsRequest')
@@ -247,6 +252,7 @@ module Aws::WorkSpaces
247
252
  FailedWorkspaceChangeRequest = Shapes::StructureShape.new(name: 'FailedWorkspaceChangeRequest')
248
253
  GetAccountLinkRequest = Shapes::StructureShape.new(name: 'GetAccountLinkRequest')
249
254
  GetAccountLinkResult = Shapes::StructureShape.new(name: 'GetAccountLinkResult')
255
+ IDCConfig = Shapes::StructureShape.new(name: 'IDCConfig')
250
256
  IdleDisconnectTimeoutInSeconds = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInSeconds')
251
257
  ImageAssociatedResourceType = Shapes::StringShape.new(name: 'ImageAssociatedResourceType')
252
258
  ImageAssociatedResourceTypeList = Shapes::ListShape.new(name: 'ImageAssociatedResourceTypeList')
@@ -292,6 +298,8 @@ module Aws::WorkSpaces
292
298
  ManagementCidrRangeMaxResults = Shapes::IntegerShape.new(name: 'ManagementCidrRangeMaxResults')
293
299
  MaxUserDurationInSeconds = Shapes::IntegerShape.new(name: 'MaxUserDurationInSeconds')
294
300
  MaximumLength = Shapes::IntegerShape.new(name: 'MaximumLength')
301
+ MicrosoftEntraConfig = Shapes::StructureShape.new(name: 'MicrosoftEntraConfig')
302
+ MicrosoftEntraConfigTenantId = Shapes::StringShape.new(name: 'MicrosoftEntraConfigTenantId')
295
303
  MigrateWorkspaceRequest = Shapes::StructureShape.new(name: 'MigrateWorkspaceRequest')
296
304
  MigrateWorkspaceResult = Shapes::StructureShape.new(name: 'MigrateWorkspaceResult')
297
305
  ModificationResourceEnum = Shapes::StringShape.new(name: 'ModificationResourceEnum')
@@ -1013,10 +1021,19 @@ module Aws::WorkSpaces
1013
1021
  DescribeWorkspaceBundlesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
1014
1022
  DescribeWorkspaceBundlesResult.struct_class = Types::DescribeWorkspaceBundlesResult
1015
1023
 
1024
+ DescribeWorkspaceDirectoriesFilter.add_member(:name, Shapes::ShapeRef.new(shape: DescribeWorkspaceDirectoriesFilterName, required: true, location_name: "Name"))
1025
+ DescribeWorkspaceDirectoriesFilter.add_member(:values, Shapes::ShapeRef.new(shape: DescribeWorkspaceDirectoriesFilterValues, required: true, location_name: "Values"))
1026
+ DescribeWorkspaceDirectoriesFilter.struct_class = Types::DescribeWorkspaceDirectoriesFilter
1027
+
1028
+ DescribeWorkspaceDirectoriesFilterList.member = Shapes::ShapeRef.new(shape: DescribeWorkspaceDirectoriesFilter)
1029
+
1030
+ DescribeWorkspaceDirectoriesFilterValues.member = Shapes::ShapeRef.new(shape: DescribeWorkspaceDirectoriesFilterValue)
1031
+
1016
1032
  DescribeWorkspaceDirectoriesRequest.add_member(:directory_ids, Shapes::ShapeRef.new(shape: DirectoryIdList, location_name: "DirectoryIds"))
1017
1033
  DescribeWorkspaceDirectoriesRequest.add_member(:workspace_directory_names, Shapes::ShapeRef.new(shape: WorkspaceDirectoryNameList, location_name: "WorkspaceDirectoryNames"))
1018
1034
  DescribeWorkspaceDirectoriesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: Limit, location_name: "Limit"))
1019
1035
  DescribeWorkspaceDirectoriesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
1036
+ DescribeWorkspaceDirectoriesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: DescribeWorkspaceDirectoriesFilterList, location_name: "Filters"))
1020
1037
  DescribeWorkspaceDirectoriesRequest.struct_class = Types::DescribeWorkspaceDirectoriesRequest
1021
1038
 
1022
1039
  DescribeWorkspaceDirectoriesResult.add_member(:directories, Shapes::ShapeRef.new(shape: DirectoryList, location_name: "Directories"))
@@ -1166,6 +1183,10 @@ module Aws::WorkSpaces
1166
1183
  GetAccountLinkResult.add_member(:account_link, Shapes::ShapeRef.new(shape: AccountLink, location_name: "AccountLink"))
1167
1184
  GetAccountLinkResult.struct_class = Types::GetAccountLinkResult
1168
1185
 
1186
+ IDCConfig.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "InstanceArn"))
1187
+ IDCConfig.add_member(:application_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ApplicationArn"))
1188
+ IDCConfig.struct_class = Types::IDCConfig
1189
+
1169
1190
  ImageAssociatedResourceTypeList.member = Shapes::ShapeRef.new(shape: ImageAssociatedResourceType)
1170
1191
 
1171
1192
  ImagePermission.add_member(:shared_account_id, Shapes::ShapeRef.new(shape: AwsAccount, location_name: "SharedAccountId"))
@@ -1274,6 +1295,10 @@ module Aws::WorkSpaces
1274
1295
  LoginMessage.key = Shapes::ShapeRef.new(shape: ClientLocale)
1275
1296
  LoginMessage.value = Shapes::ShapeRef.new(shape: ClientLoginMessage)
1276
1297
 
1298
+ MicrosoftEntraConfig.add_member(:tenant_id, Shapes::ShapeRef.new(shape: MicrosoftEntraConfigTenantId, location_name: "TenantId"))
1299
+ MicrosoftEntraConfig.add_member(:application_config_secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerArn, location_name: "ApplicationConfigSecretArn"))
1300
+ MicrosoftEntraConfig.struct_class = Types::MicrosoftEntraConfig
1301
+
1277
1302
  MigrateWorkspaceRequest.add_member(:source_workspace_id, Shapes::ShapeRef.new(shape: WorkspaceId, required: true, location_name: "SourceWorkspaceId"))
1278
1303
  MigrateWorkspaceRequest.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, required: true, location_name: "BundleId"))
1279
1304
  MigrateWorkspaceRequest.struct_class = Types::MigrateWorkspaceRequest
@@ -1410,6 +1435,8 @@ module Aws::WorkSpaces
1410
1435
  RegisterWorkspaceDirectoryRequest.add_member(:workspace_directory_name, Shapes::ShapeRef.new(shape: WorkspaceDirectoryName, location_name: "WorkspaceDirectoryName"))
1411
1436
  RegisterWorkspaceDirectoryRequest.add_member(:workspace_directory_description, Shapes::ShapeRef.new(shape: WorkspaceDirectoryDescription, location_name: "WorkspaceDirectoryDescription"))
1412
1437
  RegisterWorkspaceDirectoryRequest.add_member(:user_identity_type, Shapes::ShapeRef.new(shape: UserIdentityType, location_name: "UserIdentityType"))
1438
+ RegisterWorkspaceDirectoryRequest.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "IdcInstanceArn"))
1439
+ RegisterWorkspaceDirectoryRequest.add_member(:microsoft_entra_config, Shapes::ShapeRef.new(shape: MicrosoftEntraConfig, location_name: "MicrosoftEntraConfig"))
1413
1440
  RegisterWorkspaceDirectoryRequest.add_member(:workspace_type, Shapes::ShapeRef.new(shape: WorkspaceType, location_name: "WorkspaceType"))
1414
1441
  RegisterWorkspaceDirectoryRequest.add_member(:active_directory_config, Shapes::ShapeRef.new(shape: ActiveDirectoryConfig, location_name: "ActiveDirectoryConfig"))
1415
1442
  RegisterWorkspaceDirectoryRequest.struct_class = Types::RegisterWorkspaceDirectoryRequest
@@ -1753,10 +1780,12 @@ module Aws::WorkSpaces
1753
1780
  WorkspaceDirectory.add_member(:selfservice_permissions, Shapes::ShapeRef.new(shape: SelfservicePermissions, location_name: "SelfservicePermissions"))
1754
1781
  WorkspaceDirectory.add_member(:saml_properties, Shapes::ShapeRef.new(shape: SamlProperties, location_name: "SamlProperties"))
1755
1782
  WorkspaceDirectory.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
1783
+ WorkspaceDirectory.add_member(:microsoft_entra_config, Shapes::ShapeRef.new(shape: MicrosoftEntraConfig, location_name: "MicrosoftEntraConfig"))
1756
1784
  WorkspaceDirectory.add_member(:workspace_directory_name, Shapes::ShapeRef.new(shape: WorkspaceDirectoryName, location_name: "WorkspaceDirectoryName"))
1757
1785
  WorkspaceDirectory.add_member(:workspace_directory_description, Shapes::ShapeRef.new(shape: WorkspaceDirectoryDescription, location_name: "WorkspaceDirectoryDescription"))
1758
1786
  WorkspaceDirectory.add_member(:user_identity_type, Shapes::ShapeRef.new(shape: UserIdentityType, location_name: "UserIdentityType"))
1759
1787
  WorkspaceDirectory.add_member(:workspace_type, Shapes::ShapeRef.new(shape: WorkspaceType, location_name: "WorkspaceType"))
1788
+ WorkspaceDirectory.add_member(:idc_config, Shapes::ShapeRef.new(shape: IDCConfig, location_name: "IDCConfig"))
1760
1789
  WorkspaceDirectory.add_member(:active_directory_config, Shapes::ShapeRef.new(shape: ActiveDirectoryConfig, location_name: "ActiveDirectoryConfig"))
1761
1790
  WorkspaceDirectory.add_member(:streaming_properties, Shapes::ShapeRef.new(shape: StreamingProperties, location_name: "StreamingProperties"))
1762
1791
  WorkspaceDirectory.add_member(:error_message, Shapes::ShapeRef.new(shape: Description, location_name: "ErrorMessage"))
@@ -2243,6 +2243,25 @@ module Aws::WorkSpaces
2243
2243
  include Aws::Structure
2244
2244
  end
2245
2245
 
2246
+ # Describes the filter conditions for the WorkSpaces to return.
2247
+ #
2248
+ # @!attribute [rw] name
2249
+ # The name of the WorkSpaces to filter.
2250
+ # @return [String]
2251
+ #
2252
+ # @!attribute [rw] values
2253
+ # The values for filtering WorkSpaces
2254
+ # @return [Array<String>]
2255
+ #
2256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspaceDirectoriesFilter AWS API Documentation
2257
+ #
2258
+ class DescribeWorkspaceDirectoriesFilter < Struct.new(
2259
+ :name,
2260
+ :values)
2261
+ SENSITIVE = []
2262
+ include Aws::Structure
2263
+ end
2264
+
2246
2265
  # @!attribute [rw] directory_ids
2247
2266
  # The identifiers of the directories. If the value is null, all
2248
2267
  # directories are retrieved.
@@ -2261,13 +2280,18 @@ module Aws::WorkSpaces
2261
2280
  # paginated, provide this token to receive the next set of results.
2262
2281
  # @return [String]
2263
2282
  #
2283
+ # @!attribute [rw] filters
2284
+ # The filter condition for the WorkSpaces.
2285
+ # @return [Array<Types::DescribeWorkspaceDirectoriesFilter>]
2286
+ #
2264
2287
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspaceDirectoriesRequest AWS API Documentation
2265
2288
  #
2266
2289
  class DescribeWorkspaceDirectoriesRequest < Struct.new(
2267
2290
  :directory_ids,
2268
2291
  :workspace_directory_names,
2269
2292
  :limit,
2270
- :next_token)
2293
+ :next_token,
2294
+ :filters)
2271
2295
  SENSITIVE = []
2272
2296
  include Aws::Structure
2273
2297
  end
@@ -2837,6 +2861,25 @@ module Aws::WorkSpaces
2837
2861
  include Aws::Structure
2838
2862
  end
2839
2863
 
2864
+ # Specifies the configurations of the identity center.
2865
+ #
2866
+ # @!attribute [rw] instance_arn
2867
+ # The Amazon Resource Name (ARN) of the identity center instance.
2868
+ # @return [String]
2869
+ #
2870
+ # @!attribute [rw] application_arn
2871
+ # The Amazon Resource Name (ARN) of the application.
2872
+ # @return [String]
2873
+ #
2874
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/IDCConfig AWS API Documentation
2875
+ #
2876
+ class IDCConfig < Struct.new(
2877
+ :instance_arn,
2878
+ :application_arn)
2879
+ SENSITIVE = []
2880
+ include Aws::Structure
2881
+ end
2882
+
2840
2883
  # Describes the Amazon Web Services accounts that have been granted
2841
2884
  # permission to use a shared image. For more information about sharing
2842
2885
  # images, see [ Share or Unshare a Custom WorkSpaces Image][1].
@@ -3032,7 +3075,9 @@ module Aws::WorkSpaces
3032
3075
  # <note markdown="1"> * Although this parameter is an array, only one item is allowed at
3033
3076
  # this time.
3034
3077
  #
3035
- # * Windows 11 only supports `Microsoft_Office_2019`.
3078
+ # * During the image import process, non-GPU WSP WorkSpaces with
3079
+ # Windows 11 support only `Microsoft_Office_2019`. GPU WSP
3080
+ # WorkSpaces with Windows 11 do not support Office installation.
3036
3081
  #
3037
3082
  # </note>
3038
3083
  #
@@ -3412,6 +3457,25 @@ module Aws::WorkSpaces
3412
3457
  include Aws::Structure
3413
3458
  end
3414
3459
 
3460
+ # Specifies the configurations of the Microsoft Entra.
3461
+ #
3462
+ # @!attribute [rw] tenant_id
3463
+ # The identifier of the tenant.
3464
+ # @return [String]
3465
+ #
3466
+ # @!attribute [rw] application_config_secret_arn
3467
+ # The Amazon Resource Name (ARN) of the application config.
3468
+ # @return [String]
3469
+ #
3470
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/MicrosoftEntraConfig AWS API Documentation
3471
+ #
3472
+ class MicrosoftEntraConfig < Struct.new(
3473
+ :tenant_id,
3474
+ :application_config_secret_arn)
3475
+ SENSITIVE = []
3476
+ include Aws::Structure
3477
+ end
3478
+
3415
3479
  # @!attribute [rw] source_workspace_id
3416
3480
  # The identifier of the WorkSpace to migrate from.
3417
3481
  # @return [String]
@@ -3958,6 +4022,14 @@ module Aws::WorkSpaces
3958
4022
  # The type of identity management the user is using.
3959
4023
  # @return [String]
3960
4024
  #
4025
+ # @!attribute [rw] idc_instance_arn
4026
+ # The Amazon Resource Name (ARN) of the identity center instance.
4027
+ # @return [String]
4028
+ #
4029
+ # @!attribute [rw] microsoft_entra_config
4030
+ # The details about Microsoft Entra config.
4031
+ # @return [Types::MicrosoftEntraConfig]
4032
+ #
3961
4033
  # @!attribute [rw] workspace_type
3962
4034
  # Indicates whether the directory's WorkSpace type is personal or
3963
4035
  # pools.
@@ -3979,6 +4051,8 @@ module Aws::WorkSpaces
3979
4051
  :workspace_directory_name,
3980
4052
  :workspace_directory_description,
3981
4053
  :user_identity_type,
4054
+ :idc_instance_arn,
4055
+ :microsoft_entra_config,
3982
4056
  :workspace_type,
3983
4057
  :active_directory_config)
3984
4058
  SENSITIVE = []
@@ -5567,6 +5641,10 @@ module Aws::WorkSpaces
5567
5641
  # for WorkSpaces login.
5568
5642
  # @return [Types::CertificateBasedAuthProperties]
5569
5643
  #
5644
+ # @!attribute [rw] microsoft_entra_config
5645
+ # Specifies details about Microsoft Entra configurations.
5646
+ # @return [Types::MicrosoftEntraConfig]
5647
+ #
5570
5648
  # @!attribute [rw] workspace_directory_name
5571
5649
  # The name fo the WorkSpace directory.
5572
5650
  # @return [String]
@@ -5584,6 +5662,10 @@ module Aws::WorkSpaces
5584
5662
  # pools.
5585
5663
  # @return [String]
5586
5664
  #
5665
+ # @!attribute [rw] idc_config
5666
+ # Specifies details about identity center configurations.
5667
+ # @return [Types::IDCConfig]
5668
+ #
5587
5669
  # @!attribute [rw] active_directory_config
5588
5670
  # Information about the Active Directory config.
5589
5671
  # @return [Types::ActiveDirectoryConfig]
@@ -5617,10 +5699,12 @@ module Aws::WorkSpaces
5617
5699
  :selfservice_permissions,
5618
5700
  :saml_properties,
5619
5701
  :certificate_based_auth_properties,
5702
+ :microsoft_entra_config,
5620
5703
  :workspace_directory_name,
5621
5704
  :workspace_directory_description,
5622
5705
  :user_identity_type,
5623
5706
  :workspace_type,
5707
+ :idc_config,
5624
5708
  :active_directory_config,
5625
5709
  :streaming_properties,
5626
5710
  :error_message)
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspaces/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpaces
54
54
 
55
- GEM_VERSION = '1.111.0'
55
+ GEM_VERSION = '1.113.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -685,7 +685,13 @@ module Aws
685
685
  ?directory_ids: Array[::String],
686
686
  ?workspace_directory_names: Array[::String],
687
687
  ?limit: ::Integer,
688
- ?next_token: ::String
688
+ ?next_token: ::String,
689
+ ?filters: Array[
690
+ {
691
+ name: ("USER_IDENTITY_TYPE" | "WORKSPACE_TYPE"),
692
+ values: Array[::String]
693
+ },
694
+ ]
689
695
  ) -> _DescribeWorkspaceDirectoriesResponseSuccess
690
696
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkspaceDirectoriesResponseSuccess
691
697
 
@@ -898,7 +904,7 @@ module Aws
898
904
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#import_workspace_image-instance_method
899
905
  def import_workspace_image: (
900
906
  ec2_image_id: ::String,
901
- ingestion_process: ("BYOL_REGULAR" | "BYOL_GRAPHICS" | "BYOL_GRAPHICSPRO" | "BYOL_GRAPHICS_G4DN" | "BYOL_REGULAR_WSP" | "BYOL_REGULAR_BYOP" | "BYOL_GRAPHICS_G4DN_BYOP"),
907
+ ingestion_process: ("BYOL_REGULAR" | "BYOL_GRAPHICS" | "BYOL_GRAPHICSPRO" | "BYOL_GRAPHICS_G4DN" | "BYOL_REGULAR_WSP" | "BYOL_GRAPHICS_G4DN_WSP" | "BYOL_REGULAR_BYOP" | "BYOL_GRAPHICS_G4DN_BYOP"),
902
908
  image_name: ::String,
903
909
  image_description: ::String,
904
910
  ?tags: Array[
@@ -1156,7 +1162,12 @@ module Aws
1156
1162
  ],
1157
1163
  ?workspace_directory_name: ::String,
1158
1164
  ?workspace_directory_description: ::String,
1159
- ?user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE"),
1165
+ ?user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE" | "AWS_IAM_IDENTITY_CENTER"),
1166
+ ?idc_instance_arn: ::String,
1167
+ ?microsoft_entra_config: {
1168
+ tenant_id: ::String?,
1169
+ application_config_secret_arn: ::String?
1170
+ },
1160
1171
  ?workspace_type: ("PERSONAL" | "POOLS"),
1161
1172
  ?active_directory_config: {
1162
1173
  domain_name: ::String,
data/sig/types.rbs CHANGED
@@ -677,11 +677,18 @@ module Aws::WorkSpaces
677
677
  SENSITIVE: []
678
678
  end
679
679
 
680
+ class DescribeWorkspaceDirectoriesFilter
681
+ attr_accessor name: ("USER_IDENTITY_TYPE" | "WORKSPACE_TYPE")
682
+ attr_accessor values: ::Array[::String]
683
+ SENSITIVE: []
684
+ end
685
+
680
686
  class DescribeWorkspaceDirectoriesRequest
681
687
  attr_accessor directory_ids: ::Array[::String]
682
688
  attr_accessor workspace_directory_names: ::Array[::String]
683
689
  attr_accessor limit: ::Integer
684
690
  attr_accessor next_token: ::String
691
+ attr_accessor filters: ::Array[Types::DescribeWorkspaceDirectoriesFilter]
685
692
  SENSITIVE: []
686
693
  end
687
694
 
@@ -860,6 +867,12 @@ module Aws::WorkSpaces
860
867
  SENSITIVE: []
861
868
  end
862
869
 
870
+ class IDCConfig
871
+ attr_accessor instance_arn: ::String
872
+ attr_accessor application_arn: ::String
873
+ SENSITIVE: []
874
+ end
875
+
863
876
  class ImagePermission
864
877
  attr_accessor shared_account_id: ::String
865
878
  SENSITIVE: []
@@ -899,7 +912,7 @@ module Aws::WorkSpaces
899
912
 
900
913
  class ImportWorkspaceImageRequest
901
914
  attr_accessor ec2_image_id: ::String
902
- attr_accessor ingestion_process: ("BYOL_REGULAR" | "BYOL_GRAPHICS" | "BYOL_GRAPHICSPRO" | "BYOL_GRAPHICS_G4DN" | "BYOL_REGULAR_WSP" | "BYOL_REGULAR_BYOP" | "BYOL_GRAPHICS_G4DN_BYOP")
915
+ attr_accessor ingestion_process: ("BYOL_REGULAR" | "BYOL_GRAPHICS" | "BYOL_GRAPHICSPRO" | "BYOL_GRAPHICS_G4DN" | "BYOL_REGULAR_WSP" | "BYOL_GRAPHICS_G4DN_WSP" | "BYOL_REGULAR_BYOP" | "BYOL_GRAPHICS_G4DN_BYOP")
903
916
  attr_accessor image_name: ::String
904
917
  attr_accessor image_description: ::String
905
918
  attr_accessor tags: ::Array[Types::Tag]
@@ -984,6 +997,12 @@ module Aws::WorkSpaces
984
997
  SENSITIVE: []
985
998
  end
986
999
 
1000
+ class MicrosoftEntraConfig
1001
+ attr_accessor tenant_id: ::String
1002
+ attr_accessor application_config_secret_arn: ::String
1003
+ SENSITIVE: []
1004
+ end
1005
+
987
1006
  class MigrateWorkspaceRequest
988
1007
  attr_accessor source_workspace_id: ::String
989
1008
  attr_accessor bundle_id: ::String
@@ -1167,7 +1186,9 @@ module Aws::WorkSpaces
1167
1186
  attr_accessor tags: ::Array[Types::Tag]
1168
1187
  attr_accessor workspace_directory_name: ::String
1169
1188
  attr_accessor workspace_directory_description: ::String
1170
- attr_accessor user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE")
1189
+ attr_accessor user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE" | "AWS_IAM_IDENTITY_CENTER")
1190
+ attr_accessor idc_instance_arn: ::String
1191
+ attr_accessor microsoft_entra_config: Types::MicrosoftEntraConfig
1171
1192
  attr_accessor workspace_type: ("PERSONAL" | "POOLS")
1172
1193
  attr_accessor active_directory_config: Types::ActiveDirectoryConfig
1173
1194
  SENSITIVE: []
@@ -1592,7 +1613,7 @@ module Aws::WorkSpaces
1592
1613
  attr_accessor dns_ip_addresses: ::Array[::String]
1593
1614
  attr_accessor customer_user_name: ::String
1594
1615
  attr_accessor iam_role_id: ::String
1595
- attr_accessor directory_type: ("SIMPLE_AD" | "AD_CONNECTOR" | "CUSTOMER_MANAGED")
1616
+ attr_accessor directory_type: ("SIMPLE_AD" | "AD_CONNECTOR" | "CUSTOMER_MANAGED" | "AWS_IAM_IDENTITY_CENTER")
1596
1617
  attr_accessor workspace_security_group_id: ::String
1597
1618
  attr_accessor state: ("REGISTERING" | "REGISTERED" | "DEREGISTERING" | "DEREGISTERED" | "ERROR")
1598
1619
  attr_accessor workspace_creation_properties: Types::DefaultWorkspaceCreationProperties
@@ -1602,10 +1623,12 @@ module Aws::WorkSpaces
1602
1623
  attr_accessor selfservice_permissions: Types::SelfservicePermissions
1603
1624
  attr_accessor saml_properties: Types::SamlProperties
1604
1625
  attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
1626
+ attr_accessor microsoft_entra_config: Types::MicrosoftEntraConfig
1605
1627
  attr_accessor workspace_directory_name: ::String
1606
1628
  attr_accessor workspace_directory_description: ::String
1607
- attr_accessor user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE")
1629
+ attr_accessor user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE" | "AWS_IAM_IDENTITY_CENTER")
1608
1630
  attr_accessor workspace_type: ("PERSONAL" | "POOLS")
1631
+ attr_accessor idc_config: Types::IDCConfig
1609
1632
  attr_accessor active_directory_config: Types::ActiveDirectoryConfig
1610
1633
  attr_accessor streaming_properties: Types::StreamingProperties
1611
1634
  attr_accessor error_message: ::String
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.111.0
4
+ version: 1.113.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-07-30 00:00:00.000000000 Z
11
+ date: 2024-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core