aws-sdk-workspacesweb 1.22.0 → 1.23.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: 482cd4b5cb60b4fc7b5b883bd05fe7a96a5266dccb0d7781bf238fd70e184669
4
- data.tar.gz: 0b94bbf340449b994ee6aefa17832de6e4a26194f8f06e68ab7a7bc10eb958a2
3
+ metadata.gz: dc7e79b99b72484847aa23a2e76965f9cdccf08fb4916bdb778c34a2f29c8a0b
4
+ data.tar.gz: c45a5242af70edc922fd8f807257a45780f26d61e07313ef20f1175341343565
5
5
  SHA512:
6
- metadata.gz: 150d8a74ba419f783e2c21e09467e2395287c88ed83c7023c3da71e64cbc26b8534b00a34a64db36313d3195965d878716f4403b686b9bf797ed7d671efdc0a9
7
- data.tar.gz: 38149c49515f1033a89512a6dadaad30bad61f72101d667560bc0dcccdace393afc142db2461f680fb9d1c241e1602b4df95ed943b82aeb31d6bf0a08c23a864
6
+ metadata.gz: 30a1fe38e7670771561410f374c9fa034bb0e260413ef89da3bcc01b304bd7252db6185a708c97dbb6543757fd38a4e05060542417efcd9d5dc693a1ecd962f5
7
+ data.tar.gz: 65fe03d4d0550c2b37ec4b52ebcf40300b2b035c3360632884fc2ea3cdd8e0a6174a7f6c8b8fa363f81284fac91be189e8de7af67eb9281d9c69b6f3cd460bb4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2024-06-24)
5
+ ------------------
6
+
7
+ * Feature - Added ability to enable DeepLinking functionality on a Portal via UserSettings as well as added support for IdentityProvider resource tagging.
8
+
4
9
  1.22.0 (2024-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -89,6 +89,11 @@ module Aws::WorkSpacesWeb
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::WorkSpacesWeb
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::WorkSpacesWeb
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -779,6 +782,10 @@ module Aws::WorkSpacesWeb
779
782
  # @option params [required, String] :portal_arn
780
783
  # The ARN of the web portal.
781
784
  #
785
+ # @option params [Array<Types::Tag>] :tags
786
+ # The tags to add to the identity provider resource. A tag is a
787
+ # key-value pair.
788
+ #
782
789
  # @return [Types::CreateIdentityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
783
790
  #
784
791
  # * {Types::CreateIdentityProviderResponse#identity_provider_arn #identity_provider_arn} => String
@@ -793,6 +800,12 @@ module Aws::WorkSpacesWeb
793
800
  # identity_provider_name: "IdentityProviderName", # required
794
801
  # identity_provider_type: "SAML", # required, accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
795
802
  # portal_arn: "ARN", # required
803
+ # tags: [
804
+ # {
805
+ # key: "TagKey", # required
806
+ # value: "TagValue", # required
807
+ # },
808
+ # ],
796
809
  # })
797
810
  #
798
811
  # @example Response structure
@@ -840,8 +853,8 @@ module Aws::WorkSpacesWeb
840
853
  # The IP rules of the IP access settings.
841
854
  #
842
855
  # @option params [Array<Types::Tag>] :tags
843
- # The tags to add to the browser settings resource. A tag is a key-value
844
- # pair.
856
+ # The tags to add to the IP access settings resource. A tag is a
857
+ # key-value pair.
845
858
  #
846
859
  # @return [Types::CreateIpAccessSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
847
860
  #
@@ -1181,6 +1194,10 @@ module Aws::WorkSpacesWeb
1181
1194
  # The customer managed key used to encrypt sensitive information in the
1182
1195
  # user settings.
1183
1196
  #
1197
+ # @option params [String] :deep_link_allowed
1198
+ # Specifies whether the user can use deep links that open automatically
1199
+ # when connecting to a session.
1200
+ #
1184
1201
  # @option params [Integer] :disconnect_timeout_in_minutes
1185
1202
  # The amount of time that a streaming session remains active after users
1186
1203
  # disconnect.
@@ -1238,6 +1255,7 @@ module Aws::WorkSpacesWeb
1238
1255
  # },
1239
1256
  # copy_allowed: "Disabled", # required, accepts Disabled, Enabled
1240
1257
  # customer_managed_key: "keyArn",
1258
+ # deep_link_allowed: "Disabled", # accepts Disabled, Enabled
1241
1259
  # disconnect_timeout_in_minutes: 1,
1242
1260
  # download_allowed: "Disabled", # required, accepts Disabled, Enabled
1243
1261
  # idle_disconnect_timeout_in_minutes: 1,
@@ -1921,6 +1939,7 @@ module Aws::WorkSpacesWeb
1921
1939
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
1922
1940
  # resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
1923
1941
  # resp.user_settings.customer_managed_key #=> String
1942
+ # resp.user_settings.deep_link_allowed #=> String, one of "Disabled", "Enabled"
1924
1943
  # resp.user_settings.disconnect_timeout_in_minutes #=> Integer
1925
1944
  # resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
1926
1945
  # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
@@ -2344,6 +2363,7 @@ module Aws::WorkSpacesWeb
2344
2363
  # resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].name #=> String
2345
2364
  # resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].path #=> String
2346
2365
  # resp.user_settings[0].copy_allowed #=> String, one of "Disabled", "Enabled"
2366
+ # resp.user_settings[0].deep_link_allowed #=> String, one of "Disabled", "Enabled"
2347
2367
  # resp.user_settings[0].disconnect_timeout_in_minutes #=> Integer
2348
2368
  # resp.user_settings[0].download_allowed #=> String, one of "Disabled", "Enabled"
2349
2369
  # resp.user_settings[0].idle_disconnect_timeout_in_minutes #=> Integer
@@ -2949,6 +2969,10 @@ module Aws::WorkSpacesWeb
2949
2969
  # Specifies whether the user can copy text from the streaming session to
2950
2970
  # the local device.
2951
2971
  #
2972
+ # @option params [String] :deep_link_allowed
2973
+ # Specifies whether the user can use deep links that open automatically
2974
+ # when connecting to a session.
2975
+ #
2952
2976
  # @option params [Integer] :disconnect_timeout_in_minutes
2953
2977
  # The amount of time that a streaming session remains active after users
2954
2978
  # disconnect.
@@ -3001,6 +3025,7 @@ module Aws::WorkSpacesWeb
3001
3025
  # ],
3002
3026
  # },
3003
3027
  # copy_allowed: "Disabled", # accepts Disabled, Enabled
3028
+ # deep_link_allowed: "Disabled", # accepts Disabled, Enabled
3004
3029
  # disconnect_timeout_in_minutes: 1,
3005
3030
  # download_allowed: "Disabled", # accepts Disabled, Enabled
3006
3031
  # idle_disconnect_timeout_in_minutes: 1,
@@ -3026,6 +3051,7 @@ module Aws::WorkSpacesWeb
3026
3051
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
3027
3052
  # resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
3028
3053
  # resp.user_settings.customer_managed_key #=> String
3054
+ # resp.user_settings.deep_link_allowed #=> String, one of "Disabled", "Enabled"
3029
3055
  # resp.user_settings.disconnect_timeout_in_minutes #=> Integer
3030
3056
  # resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
3031
3057
  # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
@@ -3056,7 +3082,7 @@ module Aws::WorkSpacesWeb
3056
3082
  params: params,
3057
3083
  config: config)
3058
3084
  context[:gem_name] = 'aws-sdk-workspacesweb'
3059
- context[:gem_version] = '1.22.0'
3085
+ context[:gem_version] = '1.23.0'
3060
3086
  Seahorse::Client::Request.new(handlers, context)
3061
3087
  end
3062
3088
 
@@ -346,6 +346,7 @@ module Aws::WorkSpacesWeb
346
346
  CreateIdentityProviderRequest.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, required: true, location_name: "identityProviderName"))
347
347
  CreateIdentityProviderRequest.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, required: true, location_name: "identityProviderType"))
348
348
  CreateIdentityProviderRequest.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
349
+ CreateIdentityProviderRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
349
350
  CreateIdentityProviderRequest.struct_class = Types::CreateIdentityProviderRequest
350
351
 
351
352
  CreateIdentityProviderResponse.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location_name: "identityProviderArn"))
@@ -408,6 +409,7 @@ module Aws::WorkSpacesWeb
408
409
  CreateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
409
410
  CreateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "copyAllowed"))
410
411
  CreateUserSettingsRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
412
+ CreateUserSettingsRequest.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
411
413
  CreateUserSettingsRequest.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
412
414
  CreateUserSettingsRequest.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "downloadAllowed"))
413
415
  CreateUserSettingsRequest.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
@@ -859,6 +861,7 @@ module Aws::WorkSpacesWeb
859
861
  UpdateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
860
862
  UpdateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
861
863
  UpdateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
864
+ UpdateUserSettingsRequest.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
862
865
  UpdateUserSettingsRequest.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
863
866
  UpdateUserSettingsRequest.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
864
867
  UpdateUserSettingsRequest.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
@@ -887,6 +890,7 @@ module Aws::WorkSpacesWeb
887
890
  UserSettings.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
888
891
  UserSettings.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
889
892
  UserSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
893
+ UserSettings.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
890
894
  UserSettings.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
891
895
  UserSettings.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
892
896
  UserSettings.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
@@ -900,6 +904,7 @@ module Aws::WorkSpacesWeb
900
904
 
901
905
  UserSettingsSummary.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
902
906
  UserSettingsSummary.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
907
+ UserSettingsSummary.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
903
908
  UserSettingsSummary.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
904
909
  UserSettingsSummary.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
905
910
  UserSettingsSummary.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
@@ -991,6 +996,7 @@ module Aws::WorkSpacesWeb
991
996
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
992
997
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
993
998
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
999
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
994
1000
  end)
995
1001
 
996
1002
  api.add_operation(:associate_user_access_logging_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -1251,6 +1257,7 @@ module Aws::WorkSpacesWeb
1251
1257
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1252
1258
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1253
1259
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1260
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1254
1261
  end)
1255
1262
 
1256
1263
  api.add_operation(:disassociate_ip_access_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -1264,6 +1271,7 @@ module Aws::WorkSpacesWeb
1264
1271
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1265
1272
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1266
1273
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1274
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1267
1275
  end)
1268
1276
 
1269
1277
  api.add_operation(:disassociate_network_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -1277,6 +1285,7 @@ module Aws::WorkSpacesWeb
1277
1285
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1278
1286
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1279
1287
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1288
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1280
1289
  end)
1281
1290
 
1282
1291
  api.add_operation(:disassociate_trust_store, Seahorse::Model::Operation.new.tap do |o|
@@ -1290,6 +1299,7 @@ module Aws::WorkSpacesWeb
1290
1299
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1291
1300
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1292
1301
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1302
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1293
1303
  end)
1294
1304
 
1295
1305
  api.add_operation(:disassociate_user_access_logging_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -1303,6 +1313,7 @@ module Aws::WorkSpacesWeb
1303
1313
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1304
1314
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1305
1315
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1316
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1306
1317
  end)
1307
1318
 
1308
1319
  api.add_operation(:disassociate_user_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -1316,6 +1327,7 @@ module Aws::WorkSpacesWeb
1316
1327
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1317
1328
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1318
1329
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1330
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1319
1331
  end)
1320
1332
 
1321
1333
  api.add_operation(:get_browser_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -579,6 +579,11 @@ module Aws::WorkSpacesWeb
579
579
  # The ARN of the web portal.
580
580
  # @return [String]
581
581
  #
582
+ # @!attribute [rw] tags
583
+ # The tags to add to the identity provider resource. A tag is a
584
+ # key-value pair.
585
+ # @return [Array<Types::Tag>]
586
+ #
582
587
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateIdentityProviderRequest AWS API Documentation
583
588
  #
584
589
  class CreateIdentityProviderRequest < Struct.new(
@@ -586,7 +591,8 @@ module Aws::WorkSpacesWeb
586
591
  :identity_provider_details,
587
592
  :identity_provider_name,
588
593
  :identity_provider_type,
589
- :portal_arn)
594
+ :portal_arn,
595
+ :tags)
590
596
  SENSITIVE = [:identity_provider_details, :identity_provider_name]
591
597
  include Aws::Structure
592
598
  end
@@ -639,7 +645,7 @@ module Aws::WorkSpacesWeb
639
645
  # @return [Array<Types::IpRule>]
640
646
  #
641
647
  # @!attribute [rw] tags
642
- # The tags to add to the browser settings resource. A tag is a
648
+ # The tags to add to the IP access settings resource. A tag is a
643
649
  # key-value pair.
644
650
  # @return [Array<Types::Tag>]
645
651
  #
@@ -944,6 +950,11 @@ module Aws::WorkSpacesWeb
944
950
  # the user settings.
945
951
  # @return [String]
946
952
  #
953
+ # @!attribute [rw] deep_link_allowed
954
+ # Specifies whether the user can use deep links that open
955
+ # automatically when connecting to a session.
956
+ # @return [String]
957
+ #
947
958
  # @!attribute [rw] disconnect_timeout_in_minutes
948
959
  # The amount of time that a streaming session remains active after
949
960
  # users disconnect.
@@ -987,6 +998,7 @@ module Aws::WorkSpacesWeb
987
998
  :cookie_synchronization_configuration,
988
999
  :copy_allowed,
989
1000
  :customer_managed_key,
1001
+ :deep_link_allowed,
990
1002
  :disconnect_timeout_in_minutes,
991
1003
  :download_allowed,
992
1004
  :idle_disconnect_timeout_in_minutes,
@@ -3053,6 +3065,11 @@ module Aws::WorkSpacesWeb
3053
3065
  # to the local device.
3054
3066
  # @return [String]
3055
3067
  #
3068
+ # @!attribute [rw] deep_link_allowed
3069
+ # Specifies whether the user can use deep links that open
3070
+ # automatically when connecting to a session.
3071
+ # @return [String]
3072
+ #
3056
3073
  # @!attribute [rw] disconnect_timeout_in_minutes
3057
3074
  # The amount of time that a streaming session remains active after
3058
3075
  # users disconnect.
@@ -3093,6 +3110,7 @@ module Aws::WorkSpacesWeb
3093
3110
  :client_token,
3094
3111
  :cookie_synchronization_configuration,
3095
3112
  :copy_allowed,
3113
+ :deep_link_allowed,
3096
3114
  :disconnect_timeout_in_minutes,
3097
3115
  :download_allowed,
3098
3116
  :idle_disconnect_timeout_in_minutes,
@@ -3190,6 +3208,11 @@ module Aws::WorkSpacesWeb
3190
3208
  # the user settings.
3191
3209
  # @return [String]
3192
3210
  #
3211
+ # @!attribute [rw] deep_link_allowed
3212
+ # Specifies whether the user can use deep links that open
3213
+ # automatically when connecting to a session.
3214
+ # @return [String]
3215
+ #
3193
3216
  # @!attribute [rw] disconnect_timeout_in_minutes
3194
3217
  # The amount of time that a streaming session remains active after
3195
3218
  # users disconnect.
@@ -3232,6 +3255,7 @@ module Aws::WorkSpacesWeb
3232
3255
  :cookie_synchronization_configuration,
3233
3256
  :copy_allowed,
3234
3257
  :customer_managed_key,
3258
+ :deep_link_allowed,
3235
3259
  :disconnect_timeout_in_minutes,
3236
3260
  :download_allowed,
3237
3261
  :idle_disconnect_timeout_in_minutes,
@@ -3256,6 +3280,11 @@ module Aws::WorkSpacesWeb
3256
3280
  # to the local device.
3257
3281
  # @return [String]
3258
3282
  #
3283
+ # @!attribute [rw] deep_link_allowed
3284
+ # Specifies whether the user can use deep links that open
3285
+ # automatically when connecting to a session.
3286
+ # @return [String]
3287
+ #
3259
3288
  # @!attribute [rw] disconnect_timeout_in_minutes
3260
3289
  # The amount of time that a streaming session remains active after
3261
3290
  # users disconnect.
@@ -3295,6 +3324,7 @@ module Aws::WorkSpacesWeb
3295
3324
  class UserSettingsSummary < Struct.new(
3296
3325
  :cookie_synchronization_configuration,
3297
3326
  :copy_allowed,
3327
+ :deep_link_allowed,
3298
3328
  :disconnect_timeout_in_minutes,
3299
3329
  :download_allowed,
3300
3330
  :idle_disconnect_timeout_in_minutes,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspacesweb/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpacesWeb
54
54
 
55
- GEM_VERSION = '1.22.0'
55
+ GEM_VERSION = '1.23.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -173,7 +173,13 @@ module Aws
173
173
  identity_provider_details: Hash[::String, ::String],
174
174
  identity_provider_name: ::String,
175
175
  identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC"),
176
- portal_arn: ::String
176
+ portal_arn: ::String,
177
+ ?tags: Array[
178
+ {
179
+ key: ::String,
180
+ value: ::String
181
+ },
182
+ ]
177
183
  ) -> _CreateIdentityProviderResponseSuccess
178
184
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIdentityProviderResponseSuccess
179
185
 
@@ -305,6 +311,7 @@ module Aws
305
311
  },
306
312
  copy_allowed: ("Disabled" | "Enabled"),
307
313
  ?customer_managed_key: ::String,
314
+ ?deep_link_allowed: ("Disabled" | "Enabled"),
308
315
  ?disconnect_timeout_in_minutes: ::Integer,
309
316
  download_allowed: ("Disabled" | "Enabled"),
310
317
  ?idle_disconnect_timeout_in_minutes: ::Integer,
@@ -818,6 +825,7 @@ module Aws
818
825
  ]?
819
826
  },
820
827
  ?copy_allowed: ("Disabled" | "Enabled"),
828
+ ?deep_link_allowed: ("Disabled" | "Enabled"),
821
829
  ?disconnect_timeout_in_minutes: ::Integer,
822
830
  ?download_allowed: ("Disabled" | "Enabled"),
823
831
  ?idle_disconnect_timeout_in_minutes: ::Integer,
data/sig/types.rbs CHANGED
@@ -158,6 +158,7 @@ module Aws::WorkSpacesWeb
158
158
  attr_accessor identity_provider_name: ::String
159
159
  attr_accessor identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC")
160
160
  attr_accessor portal_arn: ::String
161
+ attr_accessor tags: ::Array[Types::Tag]
161
162
  SENSITIVE: [:identity_provider_details, :identity_provider_name]
162
163
  end
163
164
 
@@ -244,6 +245,7 @@ module Aws::WorkSpacesWeb
244
245
  attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
245
246
  attr_accessor copy_allowed: ("Disabled" | "Enabled")
246
247
  attr_accessor customer_managed_key: ::String
248
+ attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
247
249
  attr_accessor disconnect_timeout_in_minutes: ::Integer
248
250
  attr_accessor download_allowed: ("Disabled" | "Enabled")
249
251
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
@@ -863,6 +865,7 @@ module Aws::WorkSpacesWeb
863
865
  attr_accessor client_token: ::String
864
866
  attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
865
867
  attr_accessor copy_allowed: ("Disabled" | "Enabled")
868
+ attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
866
869
  attr_accessor disconnect_timeout_in_minutes: ::Integer
867
870
  attr_accessor download_allowed: ("Disabled" | "Enabled")
868
871
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
@@ -897,6 +900,7 @@ module Aws::WorkSpacesWeb
897
900
  attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
898
901
  attr_accessor copy_allowed: ("Disabled" | "Enabled")
899
902
  attr_accessor customer_managed_key: ::String
903
+ attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
900
904
  attr_accessor disconnect_timeout_in_minutes: ::Integer
901
905
  attr_accessor download_allowed: ("Disabled" | "Enabled")
902
906
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
@@ -910,6 +914,7 @@ module Aws::WorkSpacesWeb
910
914
  class UserSettingsSummary
911
915
  attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
912
916
  attr_accessor copy_allowed: ("Disabled" | "Enabled")
917
+ attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
913
918
  attr_accessor disconnect_timeout_in_minutes: ::Integer
914
919
  attr_accessor download_allowed: ("Disabled" | "Enabled")
915
920
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspacesweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-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.197.0
22
+ version: 3.198.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.197.0
32
+ version: 3.198.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement