aws-sdk-workspaces 1.62.0 → 1.65.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: f2a8caf81de11140b0fb428c6308dc868297bba755b05a8c7e3d6e190dbc3fa4
4
+ data.tar.gz: b674c87f9708a4b81da634a49e02a419fd2c1b0b6b14f7e80a1cbbf56f371bb3
5
5
  SHA512:
6
- metadata.gz: fbde8051d006b2fdb32259f13aeb5a8e3a00488324e9b6bd31baa70d99ef37f32430ab94e606cdeeff2a81f1afad16109f6cd3db8874c0318723d42a2a670a6e
7
- data.tar.gz: 45f0b849bb7bd7ef69220411178380d61924681c265962643b8ded9f823ed3b2b4d6df24bdc24f6e7defd72bf4e4186068e4a3a8fa783fdb6c3c32faecf55d8a
6
+ metadata.gz: bf06eb664f16d8a4e1d4926b37db12bb2fb8d188ee5b5984eddad5d34ca0b138bb4426cba861d51fafbfa4ea569fb1fdab08ae5c4804188a278e88cce298f5aa
7
+ data.tar.gz: 4e98eb0e8c8a652e99903315b8993d00d5dabdff3f21506a5d4c8e962286e970c6da7792444f7583cbbf0f1f0a28fad81d957ceaaa81f32b023c2a5c69c1185d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.64.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.63.0 (2022-01-11)
15
+ ------------------
16
+
17
+ * Feature - Introducing new APIs for Workspaces audio optimization with Amazon Connect: CreateConnectClientAddIn, DescribeConnectClientAddIns, UpdateConnectClientAddIn and DeleteConnectClientAddIn.
18
+
4
19
  1.62.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.65.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::WorkSpaces
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
84
 
@@ -533,6 +537,46 @@ module Aws::WorkSpaces
533
537
  req.send_request(options)
534
538
  end
535
539
 
540
+ # Creates a client-add-in for Amazon Connect within a directory. You can
541
+ # create only one Amazon Connect client add-in within a directory.
542
+ #
543
+ # This client add-in allows WorkSpaces users to seamlessly connect to
544
+ # Amazon Connect.
545
+ #
546
+ # @option params [required, String] :resource_id
547
+ # The directory identifier for which to configure the client add-in.
548
+ #
549
+ # @option params [required, String] :name
550
+ # The name of the client add-in.
551
+ #
552
+ # @option params [required, String] :url
553
+ # The endpoint URL of the Amazon Connect client add-in.
554
+ #
555
+ # @return [Types::CreateConnectClientAddInResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
556
+ #
557
+ # * {Types::CreateConnectClientAddInResult#add_in_id #add_in_id} => String
558
+ #
559
+ # @example Request syntax with placeholder values
560
+ #
561
+ # resp = client.create_connect_client_add_in({
562
+ # resource_id: "DirectoryId", # required
563
+ # name: "AddInName", # required
564
+ # url: "AddInUrl", # required
565
+ # })
566
+ #
567
+ # @example Response structure
568
+ #
569
+ # resp.add_in_id #=> String
570
+ #
571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateConnectClientAddIn AWS API Documentation
572
+ #
573
+ # @overload create_connect_client_add_in(params = {})
574
+ # @param [Hash] params ({})
575
+ def create_connect_client_add_in(params = {}, options = {})
576
+ req = build_request(:create_connect_client_add_in, params)
577
+ req.send_request(options)
578
+ end
579
+
536
580
  # Creates the specified connection alias for use with cross-Region
537
581
  # redirection. For more information, see [ Cross-Region Redirection for
538
582
  # Amazon WorkSpaces][1].
@@ -929,6 +973,33 @@ module Aws::WorkSpaces
929
973
  req.send_request(options)
930
974
  end
931
975
 
976
+ # Deletes a client-add-in for Amazon Connect that is configured within a
977
+ # directory.
978
+ #
979
+ # @option params [required, String] :add_in_id
980
+ # The identifier of the client add-in to delete.
981
+ #
982
+ # @option params [required, String] :resource_id
983
+ # The directory identifier for which the client add-in is configured.
984
+ #
985
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
986
+ #
987
+ # @example Request syntax with placeholder values
988
+ #
989
+ # resp = client.delete_connect_client_add_in({
990
+ # add_in_id: "AmazonUuid", # required
991
+ # resource_id: "DirectoryId", # required
992
+ # })
993
+ #
994
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteConnectClientAddIn AWS API Documentation
995
+ #
996
+ # @overload delete_connect_client_add_in(params = {})
997
+ # @param [Hash] params ({})
998
+ def delete_connect_client_add_in(params = {}, options = {})
999
+ req = build_request(:delete_connect_client_add_in, params)
1000
+ req.send_request(options)
1001
+ end
1002
+
932
1003
  # Deletes the specified connection alias. For more information, see [
933
1004
  # Cross-Region Redirection for Amazon WorkSpaces][1].
934
1005
  #
@@ -1215,6 +1286,50 @@ module Aws::WorkSpaces
1215
1286
  req.send_request(options)
1216
1287
  end
1217
1288
 
1289
+ # Retrieves a list of Amazon Connect client add-ins that have been
1290
+ # created.
1291
+ #
1292
+ # @option params [required, String] :resource_id
1293
+ # The directory identifier for which the client add-in is configured.
1294
+ #
1295
+ # @option params [String] :next_token
1296
+ # If you received a `NextToken` from a previous call that was paginated,
1297
+ # provide this token to receive the next set of results.
1298
+ #
1299
+ # @option params [Integer] :max_results
1300
+ # The maximum number of items to return.
1301
+ #
1302
+ # @return [Types::DescribeConnectClientAddInsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1303
+ #
1304
+ # * {Types::DescribeConnectClientAddInsResult#add_ins #add_ins} => Array<Types::ConnectClientAddIn>
1305
+ # * {Types::DescribeConnectClientAddInsResult#next_token #next_token} => String
1306
+ #
1307
+ # @example Request syntax with placeholder values
1308
+ #
1309
+ # resp = client.describe_connect_client_add_ins({
1310
+ # resource_id: "DirectoryId", # required
1311
+ # next_token: "PaginationToken",
1312
+ # max_results: 1,
1313
+ # })
1314
+ #
1315
+ # @example Response structure
1316
+ #
1317
+ # resp.add_ins #=> Array
1318
+ # resp.add_ins[0].add_in_id #=> String
1319
+ # resp.add_ins[0].resource_id #=> String
1320
+ # resp.add_ins[0].name #=> String
1321
+ # resp.add_ins[0].url #=> String
1322
+ # resp.next_token #=> String
1323
+ #
1324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeConnectClientAddIns AWS API Documentation
1325
+ #
1326
+ # @overload describe_connect_client_add_ins(params = {})
1327
+ # @param [Hash] params ({})
1328
+ def describe_connect_client_add_ins(params = {}, options = {})
1329
+ req = build_request(:describe_connect_client_add_ins, params)
1330
+ req.send_request(options)
1331
+ end
1332
+
1218
1333
  # Describes the permissions that the owner of a connection alias has
1219
1334
  # granted to another Amazon Web Services account for the specified
1220
1335
  # connection alias. For more information, see [ Cross-Region Redirection
@@ -2662,6 +2777,41 @@ module Aws::WorkSpaces
2662
2777
  req.send_request(options)
2663
2778
  end
2664
2779
 
2780
+ # Updates a Amazon Connect client add-in. Use this action to update the
2781
+ # name and endpoint URL of a Amazon Connect client add-in.
2782
+ #
2783
+ # @option params [required, String] :add_in_id
2784
+ # The identifier of the client add-in to update.
2785
+ #
2786
+ # @option params [required, String] :resource_id
2787
+ # The directory identifier for which the client add-in is configured.
2788
+ #
2789
+ # @option params [String] :name
2790
+ # The name of the client add-in.
2791
+ #
2792
+ # @option params [String] :url
2793
+ # The endpoint URL of the Amazon Connect client add-in.
2794
+ #
2795
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2796
+ #
2797
+ # @example Request syntax with placeholder values
2798
+ #
2799
+ # resp = client.update_connect_client_add_in({
2800
+ # add_in_id: "AmazonUuid", # required
2801
+ # resource_id: "DirectoryId", # required
2802
+ # name: "AddInName",
2803
+ # url: "AddInUrl",
2804
+ # })
2805
+ #
2806
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/UpdateConnectClientAddIn AWS API Documentation
2807
+ #
2808
+ # @overload update_connect_client_add_in(params = {})
2809
+ # @param [Hash] params ({})
2810
+ def update_connect_client_add_in(params = {}, options = {})
2811
+ req = build_request(:update_connect_client_add_in, params)
2812
+ req.send_request(options)
2813
+ end
2814
+
2665
2815
  # Shares or unshares a connection alias with one account by specifying
2666
2816
  # whether that account has permission to associate the connection alias
2667
2817
  # with a directory. If the association permission is granted, the
@@ -2865,7 +3015,7 @@ module Aws::WorkSpaces
2865
3015
  params: params,
2866
3016
  config: config)
2867
3017
  context[:gem_name] = 'aws-sdk-workspaces'
2868
- context[:gem_version] = '1.62.0'
3018
+ context[:gem_version] = '1.65.0'
2869
3019
  Seahorse::Client::Request.new(handlers, context)
2870
3020
  end
2871
3021
 
@@ -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.65.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.65.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-02-24 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.125.0
22
+ version: 3.127.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement