aws-sdk-workspacesweb 1.3.0 → 1.4.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspacesweb/client.rb +92 -3
- data/lib/aws-sdk-workspacesweb/client_api.rb +11 -0
- data/lib/aws-sdk-workspacesweb/types.rb +131 -14
- data/lib/aws-sdk-workspacesweb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4cb340962f44341a8886ea1d80ab17d2f23824d5ae5bf199ca236cc095d40b7
|
4
|
+
data.tar.gz: 026df9cbf913a580d4ed87df3304aa243b2d7cd4aea92c0588649fe901a4dbc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d353472e29826076d3b544728083c0869d4cc999d1cf0272f9127026b71f88e45e26a66cabb3ea02804c5950e556c4022c65c59adc9a3d5dcbce38db4f11984
|
7
|
+
data.tar.gz: a473103691133ba322602a5d7f0c14dde56ae921ec511ff4d0e025bede331d613e2da0cf7c61a27c7117fb38deb287a5152f2bafe0613fd6e00b378e64c9bcc0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -631,7 +631,7 @@ module Aws::WorkSpacesWeb
|
|
631
631
|
#
|
632
632
|
# * `MetadataFile` OR `MetadataURL`
|
633
633
|
#
|
634
|
-
# * `IDPSignout` *optional*
|
634
|
+
# * `IDPSignout` (boolean) *optional*
|
635
635
|
#
|
636
636
|
# @option params [required, String] :identity_provider_name
|
637
637
|
# The identity provider name.
|
@@ -879,10 +879,19 @@ module Aws::WorkSpacesWeb
|
|
879
879
|
# Specifies whether the user can copy text from the streaming session to
|
880
880
|
# the local device.
|
881
881
|
#
|
882
|
+
# @option params [Integer] :disconnect_timeout_in_minutes
|
883
|
+
# The amount of time that a streaming session remains active after users
|
884
|
+
# disconnect.
|
885
|
+
#
|
882
886
|
# @option params [required, String] :download_allowed
|
883
887
|
# Specifies whether the user can download files from the streaming
|
884
888
|
# session to the local device.
|
885
889
|
#
|
890
|
+
# @option params [Integer] :idle_disconnect_timeout_in_minutes
|
891
|
+
# The amount of time that users can be idle (inactive) before they are
|
892
|
+
# disconnected from their streaming session and the disconnect timeout
|
893
|
+
# interval begins.
|
894
|
+
#
|
886
895
|
# @option params [required, String] :paste_allowed
|
887
896
|
# Specifies whether the user can paste text from the local device to the
|
888
897
|
# streaming session.
|
@@ -907,7 +916,9 @@ module Aws::WorkSpacesWeb
|
|
907
916
|
# resp = client.create_user_settings({
|
908
917
|
# client_token: "ClientToken",
|
909
918
|
# copy_allowed: "Disabled", # required, accepts Disabled, Enabled
|
919
|
+
# disconnect_timeout_in_minutes: 1,
|
910
920
|
# download_allowed: "Disabled", # required, accepts Disabled, Enabled
|
921
|
+
# idle_disconnect_timeout_in_minutes: 1,
|
911
922
|
# paste_allowed: "Disabled", # required, accepts Disabled, Enabled
|
912
923
|
# print_allowed: "Disabled", # required, accepts Disabled, Enabled
|
913
924
|
# tags: [
|
@@ -1408,7 +1419,9 @@ module Aws::WorkSpacesWeb
|
|
1408
1419
|
# resp.user_settings.associated_portal_arns #=> Array
|
1409
1420
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
1410
1421
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
1422
|
+
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
1411
1423
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
1424
|
+
# resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
|
1412
1425
|
# resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
|
1413
1426
|
# resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
|
1414
1427
|
# resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
|
@@ -1736,7 +1749,9 @@ module Aws::WorkSpacesWeb
|
|
1736
1749
|
# resp.next_token #=> String
|
1737
1750
|
# resp.user_settings #=> Array
|
1738
1751
|
# resp.user_settings[0].copy_allowed #=> String, one of "Disabled", "Enabled"
|
1752
|
+
# resp.user_settings[0].disconnect_timeout_in_minutes #=> Integer
|
1739
1753
|
# resp.user_settings[0].download_allowed #=> String, one of "Disabled", "Enabled"
|
1754
|
+
# resp.user_settings[0].idle_disconnect_timeout_in_minutes #=> Integer
|
1740
1755
|
# resp.user_settings[0].paste_allowed #=> String, one of "Disabled", "Enabled"
|
1741
1756
|
# resp.user_settings[0].print_allowed #=> String, one of "Disabled", "Enabled"
|
1742
1757
|
# resp.user_settings[0].upload_allowed #=> String, one of "Disabled", "Enabled"
|
@@ -1891,7 +1906,68 @@ module Aws::WorkSpacesWeb
|
|
1891
1906
|
# The ARN of the identity provider.
|
1892
1907
|
#
|
1893
1908
|
# @option params [Hash<String,String>] :identity_provider_details
|
1894
|
-
# The details of the identity provider.
|
1909
|
+
# The details of the identity provider. The following list describes the
|
1910
|
+
# provider detail keys for each identity provider type.
|
1911
|
+
#
|
1912
|
+
# * For Google and Login with Amazon:
|
1913
|
+
#
|
1914
|
+
# * `client_id`
|
1915
|
+
#
|
1916
|
+
# * `client_secret`
|
1917
|
+
#
|
1918
|
+
# * `authorize_scopes`
|
1919
|
+
#
|
1920
|
+
# * For Facebook:
|
1921
|
+
#
|
1922
|
+
# * `client_id`
|
1923
|
+
#
|
1924
|
+
# * `client_secret`
|
1925
|
+
#
|
1926
|
+
# * `authorize_scopes`
|
1927
|
+
#
|
1928
|
+
# * `api_version`
|
1929
|
+
#
|
1930
|
+
# * For Sign in with Apple:
|
1931
|
+
#
|
1932
|
+
# * `client_id`
|
1933
|
+
#
|
1934
|
+
# * `team_id`
|
1935
|
+
#
|
1936
|
+
# * `key_id`
|
1937
|
+
#
|
1938
|
+
# * `private_key`
|
1939
|
+
#
|
1940
|
+
# * `authorize_scopes`
|
1941
|
+
#
|
1942
|
+
# * For OIDC providers:
|
1943
|
+
#
|
1944
|
+
# * `client_id`
|
1945
|
+
#
|
1946
|
+
# * `client_secret`
|
1947
|
+
#
|
1948
|
+
# * `attributes_request_method`
|
1949
|
+
#
|
1950
|
+
# * `oidc_issuer`
|
1951
|
+
#
|
1952
|
+
# * `authorize_scopes`
|
1953
|
+
#
|
1954
|
+
# * `authorize_url` *if not available from discovery URL specified by
|
1955
|
+
# `oidc_issuer` key*
|
1956
|
+
#
|
1957
|
+
# * `token_url` *if not available from discovery URL specified by
|
1958
|
+
# `oidc_issuer` key*
|
1959
|
+
#
|
1960
|
+
# * `attributes_url` *if not available from discovery URL specified by
|
1961
|
+
# `oidc_issuer` key*
|
1962
|
+
#
|
1963
|
+
# * `jwks_uri` *if not available from discovery URL specified by
|
1964
|
+
# `oidc_issuer` key*
|
1965
|
+
#
|
1966
|
+
# * For SAML providers:
|
1967
|
+
#
|
1968
|
+
# * `MetadataFile` OR `MetadataURL`
|
1969
|
+
#
|
1970
|
+
# * `IDPSignout` (boolean) *optional*
|
1895
1971
|
#
|
1896
1972
|
# @option params [String] :identity_provider_name
|
1897
1973
|
# The name of the identity provider.
|
@@ -2109,10 +2185,19 @@ module Aws::WorkSpacesWeb
|
|
2109
2185
|
# Specifies whether the user can copy text from the streaming session to
|
2110
2186
|
# the local device.
|
2111
2187
|
#
|
2188
|
+
# @option params [Integer] :disconnect_timeout_in_minutes
|
2189
|
+
# The amount of time that a streaming session remains active after users
|
2190
|
+
# disconnect.
|
2191
|
+
#
|
2112
2192
|
# @option params [String] :download_allowed
|
2113
2193
|
# Specifies whether the user can download files from the streaming
|
2114
2194
|
# session to the local device.
|
2115
2195
|
#
|
2196
|
+
# @option params [Integer] :idle_disconnect_timeout_in_minutes
|
2197
|
+
# The amount of time that users can be idle (inactive) before they are
|
2198
|
+
# disconnected from their streaming session and the disconnect timeout
|
2199
|
+
# interval begins.
|
2200
|
+
#
|
2116
2201
|
# @option params [String] :paste_allowed
|
2117
2202
|
# Specifies whether the user can paste text from the local device to the
|
2118
2203
|
# streaming session.
|
@@ -2136,7 +2221,9 @@ module Aws::WorkSpacesWeb
|
|
2136
2221
|
# resp = client.update_user_settings({
|
2137
2222
|
# client_token: "ClientToken",
|
2138
2223
|
# copy_allowed: "Disabled", # accepts Disabled, Enabled
|
2224
|
+
# disconnect_timeout_in_minutes: 1,
|
2139
2225
|
# download_allowed: "Disabled", # accepts Disabled, Enabled
|
2226
|
+
# idle_disconnect_timeout_in_minutes: 1,
|
2140
2227
|
# paste_allowed: "Disabled", # accepts Disabled, Enabled
|
2141
2228
|
# print_allowed: "Disabled", # accepts Disabled, Enabled
|
2142
2229
|
# upload_allowed: "Disabled", # accepts Disabled, Enabled
|
@@ -2148,7 +2235,9 @@ module Aws::WorkSpacesWeb
|
|
2148
2235
|
# resp.user_settings.associated_portal_arns #=> Array
|
2149
2236
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
2150
2237
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
2238
|
+
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
2151
2239
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
2240
|
+
# resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
|
2152
2241
|
# resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
|
2153
2242
|
# resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
|
2154
2243
|
# resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
|
@@ -2176,7 +2265,7 @@ module Aws::WorkSpacesWeb
|
|
2176
2265
|
params: params,
|
2177
2266
|
config: config)
|
2178
2267
|
context[:gem_name] = 'aws-sdk-workspacesweb'
|
2179
|
-
context[:gem_version] = '1.
|
2268
|
+
context[:gem_version] = '1.4.0'
|
2180
2269
|
Seahorse::Client::Request.new(handlers, context)
|
2181
2270
|
end
|
2182
2271
|
|
@@ -71,6 +71,7 @@ module Aws::WorkSpacesWeb
|
|
71
71
|
DisassociateTrustStoreResponse = Shapes::StructureShape.new(name: 'DisassociateTrustStoreResponse')
|
72
72
|
DisassociateUserSettingsRequest = Shapes::StructureShape.new(name: 'DisassociateUserSettingsRequest')
|
73
73
|
DisassociateUserSettingsResponse = Shapes::StructureShape.new(name: 'DisassociateUserSettingsResponse')
|
74
|
+
DisconnectTimeoutInMinutes = Shapes::IntegerShape.new(name: 'DisconnectTimeoutInMinutes')
|
74
75
|
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
75
76
|
EnabledType = Shapes::StringShape.new(name: 'EnabledType')
|
76
77
|
EncryptionContextMap = Shapes::MapShape.new(name: 'EncryptionContextMap')
|
@@ -98,6 +99,7 @@ module Aws::WorkSpacesWeb
|
|
98
99
|
IdentityProviderName = Shapes::StringShape.new(name: 'IdentityProviderName')
|
99
100
|
IdentityProviderSummary = Shapes::StructureShape.new(name: 'IdentityProviderSummary')
|
100
101
|
IdentityProviderType = Shapes::StringShape.new(name: 'IdentityProviderType')
|
102
|
+
IdleDisconnectTimeoutInMinutes = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInMinutes')
|
101
103
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
102
104
|
ListBrowserSettingsRequest = Shapes::StructureShape.new(name: 'ListBrowserSettingsRequest')
|
103
105
|
ListBrowserSettingsResponse = Shapes::StructureShape.new(name: 'ListBrowserSettingsResponse')
|
@@ -302,7 +304,9 @@ module Aws::WorkSpacesWeb
|
|
302
304
|
|
303
305
|
CreateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
304
306
|
CreateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "copyAllowed"))
|
307
|
+
CreateUserSettingsRequest.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
305
308
|
CreateUserSettingsRequest.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "downloadAllowed"))
|
309
|
+
CreateUserSettingsRequest.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
306
310
|
CreateUserSettingsRequest.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "pasteAllowed"))
|
307
311
|
CreateUserSettingsRequest.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "printAllowed"))
|
308
312
|
CreateUserSettingsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
@@ -645,7 +649,9 @@ module Aws::WorkSpacesWeb
|
|
645
649
|
|
646
650
|
UpdateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
647
651
|
UpdateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
652
|
+
UpdateUserSettingsRequest.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
648
653
|
UpdateUserSettingsRequest.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
654
|
+
UpdateUserSettingsRequest.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
649
655
|
UpdateUserSettingsRequest.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
|
650
656
|
UpdateUserSettingsRequest.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
|
651
657
|
UpdateUserSettingsRequest.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
|
@@ -657,7 +663,9 @@ module Aws::WorkSpacesWeb
|
|
657
663
|
|
658
664
|
UserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
659
665
|
UserSettings.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
666
|
+
UserSettings.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
660
667
|
UserSettings.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
668
|
+
UserSettings.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
661
669
|
UserSettings.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
|
662
670
|
UserSettings.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
|
663
671
|
UserSettings.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
|
@@ -667,7 +675,9 @@ module Aws::WorkSpacesWeb
|
|
667
675
|
UserSettingsList.member = Shapes::ShapeRef.new(shape: UserSettingsSummary)
|
668
676
|
|
669
677
|
UserSettingsSummary.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
678
|
+
UserSettingsSummary.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
670
679
|
UserSettingsSummary.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
680
|
+
UserSettingsSummary.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
671
681
|
UserSettingsSummary.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
|
672
682
|
UserSettingsSummary.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
|
673
683
|
UserSettingsSummary.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
|
@@ -783,6 +793,7 @@ module Aws::WorkSpacesWeb
|
|
783
793
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
784
794
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
785
795
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
796
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
786
797
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
787
798
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
788
799
|
end)
|
@@ -216,7 +216,7 @@ module Aws::WorkSpacesWeb
|
|
216
216
|
:associated_portal_arns,
|
217
217
|
:browser_policy,
|
218
218
|
:browser_settings_arn)
|
219
|
-
SENSITIVE = []
|
219
|
+
SENSITIVE = [:browser_policy]
|
220
220
|
include Aws::Structure
|
221
221
|
end
|
222
222
|
|
@@ -389,7 +389,7 @@ module Aws::WorkSpacesWeb
|
|
389
389
|
:client_token,
|
390
390
|
:customer_managed_key,
|
391
391
|
:tags)
|
392
|
-
SENSITIVE = []
|
392
|
+
SENSITIVE = [:browser_policy]
|
393
393
|
include Aws::Structure
|
394
394
|
end
|
395
395
|
|
@@ -495,7 +495,7 @@ module Aws::WorkSpacesWeb
|
|
495
495
|
#
|
496
496
|
# * `MetadataFile` OR `MetadataURL`
|
497
497
|
#
|
498
|
-
# * `IDPSignout` *optional*
|
498
|
+
# * `IDPSignout` (boolean) *optional*
|
499
499
|
# @return [Hash<String,String>]
|
500
500
|
#
|
501
501
|
# @!attribute [rw] identity_provider_name
|
@@ -518,7 +518,7 @@ module Aws::WorkSpacesWeb
|
|
518
518
|
:identity_provider_name,
|
519
519
|
:identity_provider_type,
|
520
520
|
:portal_arn)
|
521
|
-
SENSITIVE = []
|
521
|
+
SENSITIVE = [:identity_provider_details, :identity_provider_name]
|
522
522
|
include Aws::Structure
|
523
523
|
end
|
524
524
|
|
@@ -667,7 +667,7 @@ module Aws::WorkSpacesWeb
|
|
667
667
|
:customer_managed_key,
|
668
668
|
:display_name,
|
669
669
|
:tags)
|
670
|
-
SENSITIVE = []
|
670
|
+
SENSITIVE = [:display_name]
|
671
671
|
include Aws::Structure
|
672
672
|
end
|
673
673
|
|
@@ -754,7 +754,9 @@ module Aws::WorkSpacesWeb
|
|
754
754
|
# {
|
755
755
|
# client_token: "ClientToken",
|
756
756
|
# copy_allowed: "Disabled", # required, accepts Disabled, Enabled
|
757
|
+
# disconnect_timeout_in_minutes: 1,
|
757
758
|
# download_allowed: "Disabled", # required, accepts Disabled, Enabled
|
759
|
+
# idle_disconnect_timeout_in_minutes: 1,
|
758
760
|
# paste_allowed: "Disabled", # required, accepts Disabled, Enabled
|
759
761
|
# print_allowed: "Disabled", # required, accepts Disabled, Enabled
|
760
762
|
# tags: [
|
@@ -786,11 +788,22 @@ module Aws::WorkSpacesWeb
|
|
786
788
|
# to the local device.
|
787
789
|
# @return [String]
|
788
790
|
#
|
791
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
792
|
+
# The amount of time that a streaming session remains active after
|
793
|
+
# users disconnect.
|
794
|
+
# @return [Integer]
|
795
|
+
#
|
789
796
|
# @!attribute [rw] download_allowed
|
790
797
|
# Specifies whether the user can download files from the streaming
|
791
798
|
# session to the local device.
|
792
799
|
# @return [String]
|
793
800
|
#
|
801
|
+
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
802
|
+
# The amount of time that users can be idle (inactive) before they are
|
803
|
+
# disconnected from their streaming session and the disconnect timeout
|
804
|
+
# interval begins.
|
805
|
+
# @return [Integer]
|
806
|
+
#
|
794
807
|
# @!attribute [rw] paste_allowed
|
795
808
|
# Specifies whether the user can paste text from the local device to
|
796
809
|
# the streaming session.
|
@@ -815,7 +828,9 @@ module Aws::WorkSpacesWeb
|
|
815
828
|
class CreateUserSettingsRequest < Struct.new(
|
816
829
|
:client_token,
|
817
830
|
:copy_allowed,
|
831
|
+
:disconnect_timeout_in_minutes,
|
818
832
|
:download_allowed,
|
833
|
+
:idle_disconnect_timeout_in_minutes,
|
819
834
|
:paste_allowed,
|
820
835
|
:print_allowed,
|
821
836
|
:tags,
|
@@ -1416,7 +1431,7 @@ module Aws::WorkSpacesWeb
|
|
1416
1431
|
:identity_provider_details,
|
1417
1432
|
:identity_provider_name,
|
1418
1433
|
:identity_provider_type)
|
1419
|
-
SENSITIVE = []
|
1434
|
+
SENSITIVE = [:identity_provider_details, :identity_provider_name]
|
1420
1435
|
include Aws::Structure
|
1421
1436
|
end
|
1422
1437
|
|
@@ -1440,7 +1455,7 @@ module Aws::WorkSpacesWeb
|
|
1440
1455
|
:identity_provider_arn,
|
1441
1456
|
:identity_provider_name,
|
1442
1457
|
:identity_provider_type)
|
1443
|
-
SENSITIVE = []
|
1458
|
+
SENSITIVE = [:identity_provider_name]
|
1444
1459
|
include Aws::Structure
|
1445
1460
|
end
|
1446
1461
|
|
@@ -1945,7 +1960,7 @@ module Aws::WorkSpacesWeb
|
|
1945
1960
|
:status_reason,
|
1946
1961
|
:trust_store_arn,
|
1947
1962
|
:user_settings_arn)
|
1948
|
-
SENSITIVE = []
|
1963
|
+
SENSITIVE = [:display_name]
|
1949
1964
|
include Aws::Structure
|
1950
1965
|
end
|
1951
1966
|
|
@@ -2012,7 +2027,7 @@ module Aws::WorkSpacesWeb
|
|
2012
2027
|
:renderer_type,
|
2013
2028
|
:trust_store_arn,
|
2014
2029
|
:user_settings_arn)
|
2015
|
-
SENSITIVE = []
|
2030
|
+
SENSITIVE = [:display_name]
|
2016
2031
|
include Aws::Structure
|
2017
2032
|
end
|
2018
2033
|
|
@@ -2095,7 +2110,7 @@ module Aws::WorkSpacesWeb
|
|
2095
2110
|
class Tag < Struct.new(
|
2096
2111
|
:key,
|
2097
2112
|
:value)
|
2098
|
-
SENSITIVE = []
|
2113
|
+
SENSITIVE = [:key, :value]
|
2099
2114
|
include Aws::Structure
|
2100
2115
|
end
|
2101
2116
|
|
@@ -2302,7 +2317,7 @@ module Aws::WorkSpacesWeb
|
|
2302
2317
|
:browser_policy,
|
2303
2318
|
:browser_settings_arn,
|
2304
2319
|
:client_token)
|
2305
|
-
SENSITIVE = []
|
2320
|
+
SENSITIVE = [:browser_policy]
|
2306
2321
|
include Aws::Structure
|
2307
2322
|
end
|
2308
2323
|
|
@@ -2350,7 +2365,68 @@ module Aws::WorkSpacesWeb
|
|
2350
2365
|
# @return [String]
|
2351
2366
|
#
|
2352
2367
|
# @!attribute [rw] identity_provider_details
|
2353
|
-
# The details of the identity provider.
|
2368
|
+
# The details of the identity provider. The following list describes
|
2369
|
+
# the provider detail keys for each identity provider type.
|
2370
|
+
#
|
2371
|
+
# * For Google and Login with Amazon:
|
2372
|
+
#
|
2373
|
+
# * `client_id`
|
2374
|
+
#
|
2375
|
+
# * `client_secret`
|
2376
|
+
#
|
2377
|
+
# * `authorize_scopes`
|
2378
|
+
#
|
2379
|
+
# * For Facebook:
|
2380
|
+
#
|
2381
|
+
# * `client_id`
|
2382
|
+
#
|
2383
|
+
# * `client_secret`
|
2384
|
+
#
|
2385
|
+
# * `authorize_scopes`
|
2386
|
+
#
|
2387
|
+
# * `api_version`
|
2388
|
+
#
|
2389
|
+
# * For Sign in with Apple:
|
2390
|
+
#
|
2391
|
+
# * `client_id`
|
2392
|
+
#
|
2393
|
+
# * `team_id`
|
2394
|
+
#
|
2395
|
+
# * `key_id`
|
2396
|
+
#
|
2397
|
+
# * `private_key`
|
2398
|
+
#
|
2399
|
+
# * `authorize_scopes`
|
2400
|
+
#
|
2401
|
+
# * For OIDC providers:
|
2402
|
+
#
|
2403
|
+
# * `client_id`
|
2404
|
+
#
|
2405
|
+
# * `client_secret`
|
2406
|
+
#
|
2407
|
+
# * `attributes_request_method`
|
2408
|
+
#
|
2409
|
+
# * `oidc_issuer`
|
2410
|
+
#
|
2411
|
+
# * `authorize_scopes`
|
2412
|
+
#
|
2413
|
+
# * `authorize_url` *if not available from discovery URL specified
|
2414
|
+
# by `oidc_issuer` key*
|
2415
|
+
#
|
2416
|
+
# * `token_url` *if not available from discovery URL specified by
|
2417
|
+
# `oidc_issuer` key*
|
2418
|
+
#
|
2419
|
+
# * `attributes_url` *if not available from discovery URL specified
|
2420
|
+
# by `oidc_issuer` key*
|
2421
|
+
#
|
2422
|
+
# * `jwks_uri` *if not available from discovery URL specified by
|
2423
|
+
# `oidc_issuer` key*
|
2424
|
+
#
|
2425
|
+
# * For SAML providers:
|
2426
|
+
#
|
2427
|
+
# * `MetadataFile` OR `MetadataURL`
|
2428
|
+
#
|
2429
|
+
# * `IDPSignout` (boolean) *optional*
|
2354
2430
|
# @return [Hash<String,String>]
|
2355
2431
|
#
|
2356
2432
|
# @!attribute [rw] identity_provider_name
|
@@ -2369,7 +2445,7 @@ module Aws::WorkSpacesWeb
|
|
2369
2445
|
:identity_provider_details,
|
2370
2446
|
:identity_provider_name,
|
2371
2447
|
:identity_provider_type)
|
2372
|
-
SENSITIVE = []
|
2448
|
+
SENSITIVE = [:identity_provider_details, :identity_provider_name]
|
2373
2449
|
include Aws::Structure
|
2374
2450
|
end
|
2375
2451
|
|
@@ -2475,7 +2551,7 @@ module Aws::WorkSpacesWeb
|
|
2475
2551
|
class UpdatePortalRequest < Struct.new(
|
2476
2552
|
:display_name,
|
2477
2553
|
:portal_arn)
|
2478
|
-
SENSITIVE = []
|
2554
|
+
SENSITIVE = [:display_name]
|
2479
2555
|
include Aws::Structure
|
2480
2556
|
end
|
2481
2557
|
|
@@ -2556,7 +2632,9 @@ module Aws::WorkSpacesWeb
|
|
2556
2632
|
# {
|
2557
2633
|
# client_token: "ClientToken",
|
2558
2634
|
# copy_allowed: "Disabled", # accepts Disabled, Enabled
|
2635
|
+
# disconnect_timeout_in_minutes: 1,
|
2559
2636
|
# download_allowed: "Disabled", # accepts Disabled, Enabled
|
2637
|
+
# idle_disconnect_timeout_in_minutes: 1,
|
2560
2638
|
# paste_allowed: "Disabled", # accepts Disabled, Enabled
|
2561
2639
|
# print_allowed: "Disabled", # accepts Disabled, Enabled
|
2562
2640
|
# upload_allowed: "Disabled", # accepts Disabled, Enabled
|
@@ -2582,11 +2660,22 @@ module Aws::WorkSpacesWeb
|
|
2582
2660
|
# to the local device.
|
2583
2661
|
# @return [String]
|
2584
2662
|
#
|
2663
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
2664
|
+
# The amount of time that a streaming session remains active after
|
2665
|
+
# users disconnect.
|
2666
|
+
# @return [Integer]
|
2667
|
+
#
|
2585
2668
|
# @!attribute [rw] download_allowed
|
2586
2669
|
# Specifies whether the user can download files from the streaming
|
2587
2670
|
# session to the local device.
|
2588
2671
|
# @return [String]
|
2589
2672
|
#
|
2673
|
+
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
2674
|
+
# The amount of time that users can be idle (inactive) before they are
|
2675
|
+
# disconnected from their streaming session and the disconnect timeout
|
2676
|
+
# interval begins.
|
2677
|
+
# @return [Integer]
|
2678
|
+
#
|
2590
2679
|
# @!attribute [rw] paste_allowed
|
2591
2680
|
# Specifies whether the user can paste text from the local device to
|
2592
2681
|
# the streaming session.
|
@@ -2610,7 +2699,9 @@ module Aws::WorkSpacesWeb
|
|
2610
2699
|
class UpdateUserSettingsRequest < Struct.new(
|
2611
2700
|
:client_token,
|
2612
2701
|
:copy_allowed,
|
2702
|
+
:disconnect_timeout_in_minutes,
|
2613
2703
|
:download_allowed,
|
2704
|
+
:idle_disconnect_timeout_in_minutes,
|
2614
2705
|
:paste_allowed,
|
2615
2706
|
:print_allowed,
|
2616
2707
|
:upload_allowed,
|
@@ -2645,11 +2736,22 @@ module Aws::WorkSpacesWeb
|
|
2645
2736
|
# to the local device.
|
2646
2737
|
# @return [String]
|
2647
2738
|
#
|
2739
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
2740
|
+
# The amount of time that a streaming session remains active after
|
2741
|
+
# users disconnect.
|
2742
|
+
# @return [Integer]
|
2743
|
+
#
|
2648
2744
|
# @!attribute [rw] download_allowed
|
2649
2745
|
# Specifies whether the user can download files from the streaming
|
2650
2746
|
# session to the local device.
|
2651
2747
|
# @return [String]
|
2652
2748
|
#
|
2749
|
+
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
2750
|
+
# The amount of time that users can be idle (inactive) before they are
|
2751
|
+
# disconnected from their streaming session and the disconnect timeout
|
2752
|
+
# interval begins.
|
2753
|
+
# @return [Integer]
|
2754
|
+
#
|
2653
2755
|
# @!attribute [rw] paste_allowed
|
2654
2756
|
# Specifies whether the user can paste text from the local device to
|
2655
2757
|
# the streaming session.
|
@@ -2673,7 +2775,9 @@ module Aws::WorkSpacesWeb
|
|
2673
2775
|
class UserSettings < Struct.new(
|
2674
2776
|
:associated_portal_arns,
|
2675
2777
|
:copy_allowed,
|
2778
|
+
:disconnect_timeout_in_minutes,
|
2676
2779
|
:download_allowed,
|
2780
|
+
:idle_disconnect_timeout_in_minutes,
|
2677
2781
|
:paste_allowed,
|
2678
2782
|
:print_allowed,
|
2679
2783
|
:upload_allowed,
|
@@ -2689,11 +2793,22 @@ module Aws::WorkSpacesWeb
|
|
2689
2793
|
# to the local device.
|
2690
2794
|
# @return [String]
|
2691
2795
|
#
|
2796
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
2797
|
+
# The amount of time that a streaming session remains active after
|
2798
|
+
# users disconnect.
|
2799
|
+
# @return [Integer]
|
2800
|
+
#
|
2692
2801
|
# @!attribute [rw] download_allowed
|
2693
2802
|
# Specifies whether the user can download files from the streaming
|
2694
2803
|
# session to the local device.
|
2695
2804
|
# @return [String]
|
2696
2805
|
#
|
2806
|
+
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
2807
|
+
# The amount of time that users can be idle (inactive) before they are
|
2808
|
+
# disconnected from their streaming session and the disconnect timeout
|
2809
|
+
# interval begins.
|
2810
|
+
# @return [Integer]
|
2811
|
+
#
|
2697
2812
|
# @!attribute [rw] paste_allowed
|
2698
2813
|
# Specifies whether the user can paste text from the local device to
|
2699
2814
|
# the streaming session.
|
@@ -2716,7 +2831,9 @@ module Aws::WorkSpacesWeb
|
|
2716
2831
|
#
|
2717
2832
|
class UserSettingsSummary < Struct.new(
|
2718
2833
|
:copy_allowed,
|
2834
|
+
:disconnect_timeout_in_minutes,
|
2719
2835
|
:download_allowed,
|
2836
|
+
:idle_disconnect_timeout_in_minutes,
|
2720
2837
|
:paste_allowed,
|
2721
2838
|
:print_allowed,
|
2722
2839
|
:upload_allowed,
|
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.
|
4
|
+
version: 1.4.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: 2022-
|
11
|
+
date: 2022-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|