aws-sdk-workspaces 1.62.0 → 1.63.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: b5868553a8a96dd86d602c5afc8f9012864ea09a05b6314e50a52a7027ef186a
4
- data.tar.gz: ece72c22053f78e309e1700566bfc6191ed892a13a82cc1a5637cae9632a16c4
3
+ metadata.gz: 1fc54c7f0066ead28c2757c8c8c98278fb19752b19e7e7a10babf1169fcabca1
4
+ data.tar.gz: f079d8a787f08dd2643afb1c6cbcad169be6b180cb83cbeaffb06a713223d908
5
5
  SHA512:
6
- metadata.gz: fbde8051d006b2fdb32259f13aeb5a8e3a00488324e9b6bd31baa70d99ef37f32430ab94e606cdeeff2a81f1afad16109f6cd3db8874c0318723d42a2a670a6e
7
- data.tar.gz: 45f0b849bb7bd7ef69220411178380d61924681c265962643b8ded9f823ed3b2b4d6df24bdc24f6e7defd72bf4e4186068e4a3a8fa783fdb6c3c32faecf55d8a
6
+ metadata.gz: dbe5135e716a82a51b6bb35e02d024365c46b0f54f9af3adf1a968926445ba4ecf958ee06d03ccfbe440d030109d77c04b48cdf8b0cbe8a5811d333331c93de1
7
+ data.tar.gz: 0500df433db7af1fc0c70cef9468cfabd9d0f45422b31a07a8ca54228ec90911ae9f45cbb2759b3afde8e4b1b595aee034723f76f822a8f68435ecedd86c427c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2022-01-11)
5
+ ------------------
6
+
7
+ * Feature - Introducing new APIs for Workspaces audio optimization with Amazon Connect: CreateConnectClientAddIn, DescribeConnectClientAddIns, UpdateConnectClientAddIn and DeleteConnectClientAddIn.
8
+
4
9
  1.62.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -533,6 +533,46 @@ module Aws::WorkSpaces
533
533
  req.send_request(options)
534
534
  end
535
535
 
536
+ # Creates a client-add-in for Amazon Connect within a directory. You can
537
+ # create only one Amazon Connect client add-in within a directory.
538
+ #
539
+ # This client add-in allows WorkSpaces users to seamlessly connect to
540
+ # Amazon Connect.
541
+ #
542
+ # @option params [required, String] :resource_id
543
+ # The directory identifier for which to configure the client add-in.
544
+ #
545
+ # @option params [required, String] :name
546
+ # The name of the client add-in.
547
+ #
548
+ # @option params [required, String] :url
549
+ # The endpoint URL of the Amazon Connect client add-in.
550
+ #
551
+ # @return [Types::CreateConnectClientAddInResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
552
+ #
553
+ # * {Types::CreateConnectClientAddInResult#add_in_id #add_in_id} => String
554
+ #
555
+ # @example Request syntax with placeholder values
556
+ #
557
+ # resp = client.create_connect_client_add_in({
558
+ # resource_id: "DirectoryId", # required
559
+ # name: "AddInName", # required
560
+ # url: "AddInUrl", # required
561
+ # })
562
+ #
563
+ # @example Response structure
564
+ #
565
+ # resp.add_in_id #=> String
566
+ #
567
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateConnectClientAddIn AWS API Documentation
568
+ #
569
+ # @overload create_connect_client_add_in(params = {})
570
+ # @param [Hash] params ({})
571
+ def create_connect_client_add_in(params = {}, options = {})
572
+ req = build_request(:create_connect_client_add_in, params)
573
+ req.send_request(options)
574
+ end
575
+
536
576
  # Creates the specified connection alias for use with cross-Region
537
577
  # redirection. For more information, see [ Cross-Region Redirection for
538
578
  # Amazon WorkSpaces][1].
@@ -929,6 +969,33 @@ module Aws::WorkSpaces
929
969
  req.send_request(options)
930
970
  end
931
971
 
972
+ # Deletes a client-add-in for Amazon Connect that is configured within a
973
+ # directory.
974
+ #
975
+ # @option params [required, String] :add_in_id
976
+ # The identifier of the client add-in to delete.
977
+ #
978
+ # @option params [required, String] :resource_id
979
+ # The directory identifier for which the client add-in is configured.
980
+ #
981
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
982
+ #
983
+ # @example Request syntax with placeholder values
984
+ #
985
+ # resp = client.delete_connect_client_add_in({
986
+ # add_in_id: "AmazonUuid", # required
987
+ # resource_id: "DirectoryId", # required
988
+ # })
989
+ #
990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteConnectClientAddIn AWS API Documentation
991
+ #
992
+ # @overload delete_connect_client_add_in(params = {})
993
+ # @param [Hash] params ({})
994
+ def delete_connect_client_add_in(params = {}, options = {})
995
+ req = build_request(:delete_connect_client_add_in, params)
996
+ req.send_request(options)
997
+ end
998
+
932
999
  # Deletes the specified connection alias. For more information, see [
933
1000
  # Cross-Region Redirection for Amazon WorkSpaces][1].
934
1001
  #
@@ -1215,6 +1282,50 @@ module Aws::WorkSpaces
1215
1282
  req.send_request(options)
1216
1283
  end
1217
1284
 
1285
+ # Retrieves a list of Amazon Connect client add-ins that have been
1286
+ # created.
1287
+ #
1288
+ # @option params [required, String] :resource_id
1289
+ # The directory identifier for which the client add-in is configured.
1290
+ #
1291
+ # @option params [String] :next_token
1292
+ # If you received a `NextToken` from a previous call that was paginated,
1293
+ # provide this token to receive the next set of results.
1294
+ #
1295
+ # @option params [Integer] :max_results
1296
+ # The maximum number of items to return.
1297
+ #
1298
+ # @return [Types::DescribeConnectClientAddInsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1299
+ #
1300
+ # * {Types::DescribeConnectClientAddInsResult#add_ins #add_ins} => Array<Types::ConnectClientAddIn>
1301
+ # * {Types::DescribeConnectClientAddInsResult#next_token #next_token} => String
1302
+ #
1303
+ # @example Request syntax with placeholder values
1304
+ #
1305
+ # resp = client.describe_connect_client_add_ins({
1306
+ # resource_id: "DirectoryId", # required
1307
+ # next_token: "PaginationToken",
1308
+ # max_results: 1,
1309
+ # })
1310
+ #
1311
+ # @example Response structure
1312
+ #
1313
+ # resp.add_ins #=> Array
1314
+ # resp.add_ins[0].add_in_id #=> String
1315
+ # resp.add_ins[0].resource_id #=> String
1316
+ # resp.add_ins[0].name #=> String
1317
+ # resp.add_ins[0].url #=> String
1318
+ # resp.next_token #=> String
1319
+ #
1320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeConnectClientAddIns AWS API Documentation
1321
+ #
1322
+ # @overload describe_connect_client_add_ins(params = {})
1323
+ # @param [Hash] params ({})
1324
+ def describe_connect_client_add_ins(params = {}, options = {})
1325
+ req = build_request(:describe_connect_client_add_ins, params)
1326
+ req.send_request(options)
1327
+ end
1328
+
1218
1329
  # Describes the permissions that the owner of a connection alias has
1219
1330
  # granted to another Amazon Web Services account for the specified
1220
1331
  # connection alias. For more information, see [ Cross-Region Redirection
@@ -2662,6 +2773,41 @@ module Aws::WorkSpaces
2662
2773
  req.send_request(options)
2663
2774
  end
2664
2775
 
2776
+ # Updates a Amazon Connect client add-in. Use this action to update the
2777
+ # name and endpoint URL of a Amazon Connect client add-in.
2778
+ #
2779
+ # @option params [required, String] :add_in_id
2780
+ # The identifier of the client add-in to update.
2781
+ #
2782
+ # @option params [required, String] :resource_id
2783
+ # The directory identifier for which the client add-in is configured.
2784
+ #
2785
+ # @option params [String] :name
2786
+ # The name of the client add-in.
2787
+ #
2788
+ # @option params [String] :url
2789
+ # The endpoint URL of the Amazon Connect client add-in.
2790
+ #
2791
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2792
+ #
2793
+ # @example Request syntax with placeholder values
2794
+ #
2795
+ # resp = client.update_connect_client_add_in({
2796
+ # add_in_id: "AmazonUuid", # required
2797
+ # resource_id: "DirectoryId", # required
2798
+ # name: "AddInName",
2799
+ # url: "AddInUrl",
2800
+ # })
2801
+ #
2802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/UpdateConnectClientAddIn AWS API Documentation
2803
+ #
2804
+ # @overload update_connect_client_add_in(params = {})
2805
+ # @param [Hash] params ({})
2806
+ def update_connect_client_add_in(params = {}, options = {})
2807
+ req = build_request(:update_connect_client_add_in, params)
2808
+ req.send_request(options)
2809
+ end
2810
+
2665
2811
  # Shares or unshares a connection alias with one account by specifying
2666
2812
  # whether that account has permission to associate the connection alias
2667
2813
  # with a directory. If the association permission is granted, the
@@ -2865,7 +3011,7 @@ module Aws::WorkSpaces
2865
3011
  params: params,
2866
3012
  config: config)
2867
3013
  context[:gem_name] = 'aws-sdk-workspaces'
2868
- context[:gem_version] = '1.62.0'
3014
+ context[:gem_version] = '1.63.0'
2869
3015
  Seahorse::Client::Request.new(handlers, context)
2870
3016
  end
2871
3017
 
@@ -18,7 +18,10 @@ module Aws::WorkSpaces
18
18
  AccessPropertyValue = Shapes::StringShape.new(name: 'AccessPropertyValue')
19
19
  AccountModification = Shapes::StructureShape.new(name: 'AccountModification')
20
20
  AccountModificationList = Shapes::ListShape.new(name: 'AccountModificationList')
21
+ AddInName = Shapes::StringShape.new(name: 'AddInName')
22
+ AddInUrl = Shapes::StringShape.new(name: 'AddInUrl')
21
23
  Alias = Shapes::StringShape.new(name: 'Alias')
24
+ AmazonUuid = Shapes::StringShape.new(name: 'AmazonUuid')
22
25
  Application = Shapes::StringShape.new(name: 'Application')
23
26
  ApplicationList = Shapes::ListShape.new(name: 'ApplicationList')
24
27
  AssociateConnectionAliasRequest = Shapes::StructureShape.new(name: 'AssociateConnectionAliasRequest')
@@ -40,6 +43,8 @@ module Aws::WorkSpaces
40
43
  Compute = Shapes::StringShape.new(name: 'Compute')
41
44
  ComputeType = Shapes::StructureShape.new(name: 'ComputeType')
42
45
  ComputerName = Shapes::StringShape.new(name: 'ComputerName')
46
+ ConnectClientAddIn = Shapes::StructureShape.new(name: 'ConnectClientAddIn')
47
+ ConnectClientAddInList = Shapes::ListShape.new(name: 'ConnectClientAddInList')
43
48
  ConnectionAlias = Shapes::StructureShape.new(name: 'ConnectionAlias')
44
49
  ConnectionAliasAssociation = Shapes::StructureShape.new(name: 'ConnectionAliasAssociation')
45
50
  ConnectionAliasAssociationList = Shapes::ListShape.new(name: 'ConnectionAliasAssociationList')
@@ -54,6 +59,8 @@ module Aws::WorkSpaces
54
59
  ConnectionString = Shapes::StringShape.new(name: 'ConnectionString')
55
60
  CopyWorkspaceImageRequest = Shapes::StructureShape.new(name: 'CopyWorkspaceImageRequest')
56
61
  CopyWorkspaceImageResult = Shapes::StructureShape.new(name: 'CopyWorkspaceImageResult')
62
+ CreateConnectClientAddInRequest = Shapes::StructureShape.new(name: 'CreateConnectClientAddInRequest')
63
+ CreateConnectClientAddInResult = Shapes::StructureShape.new(name: 'CreateConnectClientAddInResult')
57
64
  CreateConnectionAliasRequest = Shapes::StructureShape.new(name: 'CreateConnectionAliasRequest')
58
65
  CreateConnectionAliasResult = Shapes::StructureShape.new(name: 'CreateConnectionAliasResult')
59
66
  CreateIpGroupRequest = Shapes::StructureShape.new(name: 'CreateIpGroupRequest')
@@ -73,6 +80,8 @@ module Aws::WorkSpaces
73
80
  DedicatedTenancySupportResultEnum = Shapes::StringShape.new(name: 'DedicatedTenancySupportResultEnum')
74
81
  DefaultOu = Shapes::StringShape.new(name: 'DefaultOu')
75
82
  DefaultWorkspaceCreationProperties = Shapes::StructureShape.new(name: 'DefaultWorkspaceCreationProperties')
83
+ DeleteConnectClientAddInRequest = Shapes::StructureShape.new(name: 'DeleteConnectClientAddInRequest')
84
+ DeleteConnectClientAddInResult = Shapes::StructureShape.new(name: 'DeleteConnectClientAddInResult')
76
85
  DeleteConnectionAliasRequest = Shapes::StructureShape.new(name: 'DeleteConnectionAliasRequest')
77
86
  DeleteConnectionAliasResult = Shapes::StructureShape.new(name: 'DeleteConnectionAliasResult')
78
87
  DeleteIpGroupRequest = Shapes::StructureShape.new(name: 'DeleteIpGroupRequest')
@@ -91,6 +100,8 @@ module Aws::WorkSpaces
91
100
  DescribeAccountResult = Shapes::StructureShape.new(name: 'DescribeAccountResult')
92
101
  DescribeClientPropertiesRequest = Shapes::StructureShape.new(name: 'DescribeClientPropertiesRequest')
93
102
  DescribeClientPropertiesResult = Shapes::StructureShape.new(name: 'DescribeClientPropertiesResult')
103
+ DescribeConnectClientAddInsRequest = Shapes::StructureShape.new(name: 'DescribeConnectClientAddInsRequest')
104
+ DescribeConnectClientAddInsResult = Shapes::StructureShape.new(name: 'DescribeConnectClientAddInsResult')
94
105
  DescribeConnectionAliasPermissionsRequest = Shapes::StructureShape.new(name: 'DescribeConnectionAliasPermissionsRequest')
95
106
  DescribeConnectionAliasPermissionsResult = Shapes::StructureShape.new(name: 'DescribeConnectionAliasPermissionsResult')
96
107
  DescribeConnectionAliasesRequest = Shapes::StructureShape.new(name: 'DescribeConnectionAliasesRequest')
@@ -238,6 +249,8 @@ module Aws::WorkSpaces
238
249
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
239
250
  UnsupportedNetworkConfigurationException = Shapes::StructureShape.new(name: 'UnsupportedNetworkConfigurationException')
240
251
  UnsupportedWorkspaceConfigurationException = Shapes::StructureShape.new(name: 'UnsupportedWorkspaceConfigurationException')
252
+ UpdateConnectClientAddInRequest = Shapes::StructureShape.new(name: 'UpdateConnectClientAddInRequest')
253
+ UpdateConnectClientAddInResult = Shapes::StructureShape.new(name: 'UpdateConnectClientAddInResult')
241
254
  UpdateConnectionAliasPermissionRequest = Shapes::StructureShape.new(name: 'UpdateConnectionAliasPermissionRequest')
242
255
  UpdateConnectionAliasPermissionResult = Shapes::StructureShape.new(name: 'UpdateConnectionAliasPermissionResult')
243
256
  UpdateDescription = Shapes::StringShape.new(name: 'UpdateDescription')
@@ -335,6 +348,14 @@ module Aws::WorkSpaces
335
348
  ComputeType.add_member(:name, Shapes::ShapeRef.new(shape: Compute, location_name: "Name"))
336
349
  ComputeType.struct_class = Types::ComputeType
337
350
 
351
+ ConnectClientAddIn.add_member(:add_in_id, Shapes::ShapeRef.new(shape: AmazonUuid, location_name: "AddInId"))
352
+ ConnectClientAddIn.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ResourceId"))
353
+ ConnectClientAddIn.add_member(:name, Shapes::ShapeRef.new(shape: AddInName, location_name: "Name"))
354
+ ConnectClientAddIn.add_member(:url, Shapes::ShapeRef.new(shape: AddInUrl, location_name: "URL"))
355
+ ConnectClientAddIn.struct_class = Types::ConnectClientAddIn
356
+
357
+ ConnectClientAddInList.member = Shapes::ShapeRef.new(shape: ConnectClientAddIn)
358
+
338
359
  ConnectionAlias.add_member(:connection_string, Shapes::ShapeRef.new(shape: ConnectionString, location_name: "ConnectionString"))
339
360
  ConnectionAlias.add_member(:alias_id, Shapes::ShapeRef.new(shape: ConnectionAliasId, location_name: "AliasId"))
340
361
  ConnectionAlias.add_member(:state, Shapes::ShapeRef.new(shape: ConnectionAliasState, location_name: "State"))
@@ -370,6 +391,14 @@ module Aws::WorkSpaces
370
391
  CopyWorkspaceImageResult.add_member(:image_id, Shapes::ShapeRef.new(shape: WorkspaceImageId, location_name: "ImageId"))
371
392
  CopyWorkspaceImageResult.struct_class = Types::CopyWorkspaceImageResult
372
393
 
394
+ CreateConnectClientAddInRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
395
+ CreateConnectClientAddInRequest.add_member(:name, Shapes::ShapeRef.new(shape: AddInName, required: true, location_name: "Name"))
396
+ CreateConnectClientAddInRequest.add_member(:url, Shapes::ShapeRef.new(shape: AddInUrl, required: true, location_name: "URL"))
397
+ CreateConnectClientAddInRequest.struct_class = Types::CreateConnectClientAddInRequest
398
+
399
+ CreateConnectClientAddInResult.add_member(:add_in_id, Shapes::ShapeRef.new(shape: AmazonUuid, location_name: "AddInId"))
400
+ CreateConnectClientAddInResult.struct_class = Types::CreateConnectClientAddInResult
401
+
373
402
  CreateConnectionAliasRequest.add_member(:connection_string, Shapes::ShapeRef.new(shape: ConnectionString, required: true, location_name: "ConnectionString"))
374
403
  CreateConnectionAliasRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
375
404
  CreateConnectionAliasRequest.struct_class = Types::CreateConnectionAliasRequest
@@ -430,6 +459,12 @@ module Aws::WorkSpaces
430
459
  DefaultWorkspaceCreationProperties.add_member(:enable_maintenance_mode, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableMaintenanceMode"))
431
460
  DefaultWorkspaceCreationProperties.struct_class = Types::DefaultWorkspaceCreationProperties
432
461
 
462
+ DeleteConnectClientAddInRequest.add_member(:add_in_id, Shapes::ShapeRef.new(shape: AmazonUuid, required: true, location_name: "AddInId"))
463
+ DeleteConnectClientAddInRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
464
+ DeleteConnectClientAddInRequest.struct_class = Types::DeleteConnectClientAddInRequest
465
+
466
+ DeleteConnectClientAddInResult.struct_class = Types::DeleteConnectClientAddInResult
467
+
433
468
  DeleteConnectionAliasRequest.add_member(:alias_id, Shapes::ShapeRef.new(shape: ConnectionAliasId, required: true, location_name: "AliasId"))
434
469
  DeleteConnectionAliasRequest.struct_class = Types::DeleteConnectionAliasRequest
435
470
 
@@ -480,6 +515,15 @@ module Aws::WorkSpaces
480
515
  DescribeClientPropertiesResult.add_member(:client_properties_list, Shapes::ShapeRef.new(shape: ClientPropertiesList, location_name: "ClientPropertiesList"))
481
516
  DescribeClientPropertiesResult.struct_class = Types::DescribeClientPropertiesResult
482
517
 
518
+ DescribeConnectClientAddInsRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
519
+ DescribeConnectClientAddInsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
520
+ DescribeConnectClientAddInsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Limit, location_name: "MaxResults"))
521
+ DescribeConnectClientAddInsRequest.struct_class = Types::DescribeConnectClientAddInsRequest
522
+
523
+ DescribeConnectClientAddInsResult.add_member(:add_ins, Shapes::ShapeRef.new(shape: ConnectClientAddInList, location_name: "AddIns"))
524
+ DescribeConnectClientAddInsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
525
+ DescribeConnectClientAddInsResult.struct_class = Types::DescribeConnectClientAddInsResult
526
+
483
527
  DescribeConnectionAliasPermissionsRequest.add_member(:alias_id, Shapes::ShapeRef.new(shape: ConnectionAliasId, required: true, location_name: "AliasId"))
484
528
  DescribeConnectionAliasPermissionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
485
529
  DescribeConnectionAliasPermissionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Limit, location_name: "MaxResults"))
@@ -854,6 +898,14 @@ module Aws::WorkSpaces
854
898
  UnsupportedWorkspaceConfigurationException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
855
899
  UnsupportedWorkspaceConfigurationException.struct_class = Types::UnsupportedWorkspaceConfigurationException
856
900
 
901
+ UpdateConnectClientAddInRequest.add_member(:add_in_id, Shapes::ShapeRef.new(shape: AmazonUuid, required: true, location_name: "AddInId"))
902
+ UpdateConnectClientAddInRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
903
+ UpdateConnectClientAddInRequest.add_member(:name, Shapes::ShapeRef.new(shape: AddInName, location_name: "Name"))
904
+ UpdateConnectClientAddInRequest.add_member(:url, Shapes::ShapeRef.new(shape: AddInUrl, location_name: "URL"))
905
+ UpdateConnectClientAddInRequest.struct_class = Types::UpdateConnectClientAddInRequest
906
+
907
+ UpdateConnectClientAddInResult.struct_class = Types::UpdateConnectClientAddInResult
908
+
857
909
  UpdateConnectionAliasPermissionRequest.add_member(:alias_id, Shapes::ShapeRef.new(shape: ConnectionAliasId, required: true, location_name: "AliasId"))
858
910
  UpdateConnectionAliasPermissionRequest.add_member(:connection_alias_permission, Shapes::ShapeRef.new(shape: ConnectionAliasPermission, required: true, location_name: "ConnectionAliasPermission"))
859
911
  UpdateConnectionAliasPermissionRequest.struct_class = Types::UpdateConnectionAliasPermissionRequest
@@ -1084,6 +1136,19 @@ module Aws::WorkSpaces
1084
1136
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1085
1137
  end)
1086
1138
 
1139
+ api.add_operation(:create_connect_client_add_in, Seahorse::Model::Operation.new.tap do |o|
1140
+ o.name = "CreateConnectClientAddIn"
1141
+ o.http_method = "POST"
1142
+ o.http_request_uri = "/"
1143
+ o.input = Shapes::ShapeRef.new(shape: CreateConnectClientAddInRequest)
1144
+ o.output = Shapes::ShapeRef.new(shape: CreateConnectClientAddInResult)
1145
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1146
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1147
+ o.errors << Shapes::ShapeRef.new(shape: ResourceCreationFailedException)
1148
+ o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
1149
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1150
+ end)
1151
+
1087
1152
  api.add_operation(:create_connection_alias, Seahorse::Model::Operation.new.tap do |o|
1088
1153
  o.name = "CreateConnectionAlias"
1089
1154
  o.http_method = "POST"
@@ -1161,6 +1226,17 @@ module Aws::WorkSpaces
1161
1226
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1162
1227
  end)
1163
1228
 
1229
+ api.add_operation(:delete_connect_client_add_in, Seahorse::Model::Operation.new.tap do |o|
1230
+ o.name = "DeleteConnectClientAddIn"
1231
+ o.http_method = "POST"
1232
+ o.http_request_uri = "/"
1233
+ o.input = Shapes::ShapeRef.new(shape: DeleteConnectClientAddInRequest)
1234
+ o.output = Shapes::ShapeRef.new(shape: DeleteConnectClientAddInResult)
1235
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1236
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1237
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1238
+ end)
1239
+
1164
1240
  api.add_operation(:delete_connection_alias, Seahorse::Model::Operation.new.tap do |o|
1165
1241
  o.name = "DeleteConnectionAlias"
1166
1242
  o.http_method = "POST"
@@ -1262,6 +1338,17 @@ module Aws::WorkSpaces
1262
1338
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1263
1339
  end)
1264
1340
 
1341
+ api.add_operation(:describe_connect_client_add_ins, Seahorse::Model::Operation.new.tap do |o|
1342
+ o.name = "DescribeConnectClientAddIns"
1343
+ o.http_method = "POST"
1344
+ o.http_request_uri = "/"
1345
+ o.input = Shapes::ShapeRef.new(shape: DescribeConnectClientAddInsRequest)
1346
+ o.output = Shapes::ShapeRef.new(shape: DescribeConnectClientAddInsResult)
1347
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1348
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1349
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1350
+ end)
1351
+
1265
1352
  api.add_operation(:describe_connection_alias_permissions, Seahorse::Model::Operation.new.tap do |o|
1266
1353
  o.name = "DescribeConnectionAliasPermissions"
1267
1354
  o.http_method = "POST"
@@ -1613,6 +1700,17 @@ module Aws::WorkSpaces
1613
1700
  o.output = Shapes::ShapeRef.new(shape: TerminateWorkspacesResult)
1614
1701
  end)
1615
1702
 
1703
+ api.add_operation(:update_connect_client_add_in, Seahorse::Model::Operation.new.tap do |o|
1704
+ o.name = "UpdateConnectClientAddIn"
1705
+ o.http_method = "POST"
1706
+ o.http_request_uri = "/"
1707
+ o.input = Shapes::ShapeRef.new(shape: UpdateConnectClientAddInRequest)
1708
+ o.output = Shapes::ShapeRef.new(shape: UpdateConnectClientAddInResult)
1709
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
1710
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1711
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1712
+ end)
1713
+
1616
1714
  api.add_operation(:update_connection_alias_permission, Seahorse::Model::Operation.new.tap do |o|
1617
1715
  o.name = "UpdateConnectionAliasPermission"
1618
1716
  o.http_method = "POST"
@@ -233,6 +233,35 @@ module Aws::WorkSpaces
233
233
  include Aws::Structure
234
234
  end
235
235
 
236
+ # Describes an Amazon Connect client add-in.
237
+ #
238
+ # @!attribute [rw] add_in_id
239
+ # The client add-in identifier.
240
+ # @return [String]
241
+ #
242
+ # @!attribute [rw] resource_id
243
+ # The directory identifier for which the client add-in is configured.
244
+ # @return [String]
245
+ #
246
+ # @!attribute [rw] name
247
+ # The name of the client add in.
248
+ # @return [String]
249
+ #
250
+ # @!attribute [rw] url
251
+ # The endpoint URL of the client add-in.
252
+ # @return [String]
253
+ #
254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ConnectClientAddIn AWS API Documentation
255
+ #
256
+ class ConnectClientAddIn < Struct.new(
257
+ :add_in_id,
258
+ :resource_id,
259
+ :name,
260
+ :url)
261
+ SENSITIVE = []
262
+ include Aws::Structure
263
+ end
264
+
236
265
  # Describes a connection alias. Connection aliases are used for
237
266
  # cross-Region redirection. For more information, see [ Cross-Region
238
267
  # Redirection for Amazon WorkSpaces][1].
@@ -409,6 +438,49 @@ module Aws::WorkSpaces
409
438
  include Aws::Structure
410
439
  end
411
440
 
441
+ # @note When making an API call, you may pass CreateConnectClientAddInRequest
442
+ # data as a hash:
443
+ #
444
+ # {
445
+ # resource_id: "DirectoryId", # required
446
+ # name: "AddInName", # required
447
+ # url: "AddInUrl", # required
448
+ # }
449
+ #
450
+ # @!attribute [rw] resource_id
451
+ # The directory identifier for which to configure the client add-in.
452
+ # @return [String]
453
+ #
454
+ # @!attribute [rw] name
455
+ # The name of the client add-in.
456
+ # @return [String]
457
+ #
458
+ # @!attribute [rw] url
459
+ # The endpoint URL of the Amazon Connect client add-in.
460
+ # @return [String]
461
+ #
462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateConnectClientAddInRequest AWS API Documentation
463
+ #
464
+ class CreateConnectClientAddInRequest < Struct.new(
465
+ :resource_id,
466
+ :name,
467
+ :url)
468
+ SENSITIVE = []
469
+ include Aws::Structure
470
+ end
471
+
472
+ # @!attribute [rw] add_in_id
473
+ # The client add-in identifier.
474
+ # @return [String]
475
+ #
476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateConnectClientAddInResult AWS API Documentation
477
+ #
478
+ class CreateConnectClientAddInResult < Struct.new(
479
+ :add_in_id)
480
+ SENSITIVE = []
481
+ include Aws::Structure
482
+ end
483
+
412
484
  # @note When making an API call, you may pass CreateConnectionAliasRequest
413
485
  # data as a hash:
414
486
  #
@@ -833,6 +905,35 @@ module Aws::WorkSpaces
833
905
  include Aws::Structure
834
906
  end
835
907
 
908
+ # @note When making an API call, you may pass DeleteConnectClientAddInRequest
909
+ # data as a hash:
910
+ #
911
+ # {
912
+ # add_in_id: "AmazonUuid", # required
913
+ # resource_id: "DirectoryId", # required
914
+ # }
915
+ #
916
+ # @!attribute [rw] add_in_id
917
+ # The identifier of the client add-in to delete.
918
+ # @return [String]
919
+ #
920
+ # @!attribute [rw] resource_id
921
+ # The directory identifier for which the client add-in is configured.
922
+ # @return [String]
923
+ #
924
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteConnectClientAddInRequest AWS API Documentation
925
+ #
926
+ class DeleteConnectClientAddInRequest < Struct.new(
927
+ :add_in_id,
928
+ :resource_id)
929
+ SENSITIVE = []
930
+ include Aws::Structure
931
+ end
932
+
933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteConnectClientAddInResult AWS API Documentation
934
+ #
935
+ class DeleteConnectClientAddInResult < Aws::EmptyStructure; end
936
+
836
937
  # @note When making an API call, you may pass DeleteConnectionAliasRequest
837
938
  # data as a hash:
838
939
  #
@@ -1080,6 +1181,56 @@ module Aws::WorkSpaces
1080
1181
  include Aws::Structure
1081
1182
  end
1082
1183
 
1184
+ # @note When making an API call, you may pass DescribeConnectClientAddInsRequest
1185
+ # data as a hash:
1186
+ #
1187
+ # {
1188
+ # resource_id: "DirectoryId", # required
1189
+ # next_token: "PaginationToken",
1190
+ # max_results: 1,
1191
+ # }
1192
+ #
1193
+ # @!attribute [rw] resource_id
1194
+ # The directory identifier for which the client add-in is configured.
1195
+ # @return [String]
1196
+ #
1197
+ # @!attribute [rw] next_token
1198
+ # If you received a `NextToken` from a previous call that was
1199
+ # paginated, provide this token to receive the next set of results.
1200
+ # @return [String]
1201
+ #
1202
+ # @!attribute [rw] max_results
1203
+ # The maximum number of items to return.
1204
+ # @return [Integer]
1205
+ #
1206
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeConnectClientAddInsRequest AWS API Documentation
1207
+ #
1208
+ class DescribeConnectClientAddInsRequest < Struct.new(
1209
+ :resource_id,
1210
+ :next_token,
1211
+ :max_results)
1212
+ SENSITIVE = []
1213
+ include Aws::Structure
1214
+ end
1215
+
1216
+ # @!attribute [rw] add_ins
1217
+ # Information about client add-ins.
1218
+ # @return [Array<Types::ConnectClientAddIn>]
1219
+ #
1220
+ # @!attribute [rw] next_token
1221
+ # The token to use to retrieve the next page of results. This value is
1222
+ # null when there are no more results to return.
1223
+ # @return [String]
1224
+ #
1225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeConnectClientAddInsResult AWS API Documentation
1226
+ #
1227
+ class DescribeConnectClientAddInsResult < Struct.new(
1228
+ :add_ins,
1229
+ :next_token)
1230
+ SENSITIVE = []
1231
+ include Aws::Structure
1232
+ end
1233
+
1083
1234
  # @note When making an API call, you may pass DescribeConnectionAliasPermissionsRequest
1084
1235
  # data as a hash:
1085
1236
  #
@@ -2985,6 +3136,47 @@ module Aws::WorkSpaces
2985
3136
  include Aws::Structure
2986
3137
  end
2987
3138
 
3139
+ # @note When making an API call, you may pass UpdateConnectClientAddInRequest
3140
+ # data as a hash:
3141
+ #
3142
+ # {
3143
+ # add_in_id: "AmazonUuid", # required
3144
+ # resource_id: "DirectoryId", # required
3145
+ # name: "AddInName",
3146
+ # url: "AddInUrl",
3147
+ # }
3148
+ #
3149
+ # @!attribute [rw] add_in_id
3150
+ # The identifier of the client add-in to update.
3151
+ # @return [String]
3152
+ #
3153
+ # @!attribute [rw] resource_id
3154
+ # The directory identifier for which the client add-in is configured.
3155
+ # @return [String]
3156
+ #
3157
+ # @!attribute [rw] name
3158
+ # The name of the client add-in.
3159
+ # @return [String]
3160
+ #
3161
+ # @!attribute [rw] url
3162
+ # The endpoint URL of the Amazon Connect client add-in.
3163
+ # @return [String]
3164
+ #
3165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/UpdateConnectClientAddInRequest AWS API Documentation
3166
+ #
3167
+ class UpdateConnectClientAddInRequest < Struct.new(
3168
+ :add_in_id,
3169
+ :resource_id,
3170
+ :name,
3171
+ :url)
3172
+ SENSITIVE = []
3173
+ include Aws::Structure
3174
+ end
3175
+
3176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/UpdateConnectClientAddInResult AWS API Documentation
3177
+ #
3178
+ class UpdateConnectClientAddInResult < Aws::EmptyStructure; end
3179
+
2988
3180
  # @note When making an API call, you may pass UpdateConnectionAliasPermissionRequest
2989
3181
  # data as a hash:
2990
3182
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-workspaces/customizations'
48
48
  # @!group service
49
49
  module Aws::WorkSpaces
50
50
 
51
- GEM_VERSION = '1.62.0'
51
+ GEM_VERSION = '1.63.0'
52
52
 
53
53
  end
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.62.0
4
+ version: 1.63.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core