aws-sdk-workspacesweb 1.18.0 → 1.19.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 +87 -29
- data/lib/aws-sdk-workspacesweb/client_api.rb +19 -0
- data/lib/aws-sdk-workspacesweb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-workspacesweb/types.rb +144 -43
- data/lib/aws-sdk-workspacesweb.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/types.rbs +17 -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: 68487e775d58b4c89492626e3f1eac2a9fcd33820b9f702a86f43f4d781fb0d2
|
|
4
|
+
data.tar.gz: c8e146f7a74300e50bda6ab30b6ed73ffcbfd3ab1a4c36525e09aca8dc51cc50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90b9dde2d9d1b64f9909df521ffce489cacd8eb4727b1c8300f2593b5b2a4f2d121b948a0cb1bc01ce4f3dd6d5fafb8290305dcd92e5dd1bc9d309d958227750
|
|
7
|
+
data.tar.gz: 67f7b0699cc6c1f04494181ea141539b469647d379f8f6c5d256a2f5a4f15d6b623a33a5d96085a17307fe04c034b887d50d2c868f3297ad81309cc72282446e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.19.0 (2024-04-23)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)
|
|
8
|
+
|
|
4
9
|
1.18.0 (2024-01-26)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.19.0
|
|
@@ -612,7 +612,7 @@ module Aws::WorkSpacesWeb
|
|
|
612
612
|
# client token returns the result from the original successful request.
|
|
613
613
|
#
|
|
614
614
|
# If you do not specify a client token, one is automatically generated
|
|
615
|
-
# by the
|
|
615
|
+
# by the Amazon Web Services SDK.
|
|
616
616
|
#
|
|
617
617
|
# **A suitable default value is auto-generated.** You should normally
|
|
618
618
|
# not need to pass this option.**
|
|
@@ -669,7 +669,7 @@ module Aws::WorkSpacesWeb
|
|
|
669
669
|
# client token returns the result from the original successful request.
|
|
670
670
|
#
|
|
671
671
|
# If you do not specify a client token, one is automatically generated
|
|
672
|
-
# by the
|
|
672
|
+
# by the Amazon Web Services SDK.
|
|
673
673
|
#
|
|
674
674
|
# **A suitable default value is auto-generated.** You should normally
|
|
675
675
|
# not need to pass this option.**
|
|
@@ -738,6 +738,13 @@ module Aws::WorkSpacesWeb
|
|
|
738
738
|
#
|
|
739
739
|
# * `IDPSignout` (boolean) *optional*
|
|
740
740
|
#
|
|
741
|
+
# * `IDPInit` (boolean) *optional*
|
|
742
|
+
#
|
|
743
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
|
744
|
+
# `rsa-sha256`
|
|
745
|
+
#
|
|
746
|
+
# * `EncryptedResponses` (boolean) *optional*
|
|
747
|
+
#
|
|
741
748
|
# @option params [required, String] :identity_provider_name
|
|
742
749
|
# The identity provider name.
|
|
743
750
|
#
|
|
@@ -790,7 +797,7 @@ module Aws::WorkSpacesWeb
|
|
|
790
797
|
# client token returns the result from the original successful request.
|
|
791
798
|
#
|
|
792
799
|
# If you do not specify a client token, one is automatically generated
|
|
793
|
-
# by the
|
|
800
|
+
# by the Amazon Web Services SDK.
|
|
794
801
|
#
|
|
795
802
|
# **A suitable default value is auto-generated.** You should normally
|
|
796
803
|
# not need to pass this option.**
|
|
@@ -864,7 +871,7 @@ module Aws::WorkSpacesWeb
|
|
|
864
871
|
# client token returns the result from the original successful request.
|
|
865
872
|
#
|
|
866
873
|
# If you do not specify a client token, one is automatically generated
|
|
867
|
-
# by the
|
|
874
|
+
# by the Amazon Web Services SDK.
|
|
868
875
|
#
|
|
869
876
|
# **A suitable default value is auto-generated.** You should normally
|
|
870
877
|
# not need to pass this option.**
|
|
@@ -932,12 +939,11 @@ module Aws::WorkSpacesWeb
|
|
|
932
939
|
# access to your web portal is controlled through your identity
|
|
933
940
|
# provider.
|
|
934
941
|
#
|
|
935
|
-
# `
|
|
936
|
-
# Identity Center (successor to
|
|
937
|
-
#
|
|
938
|
-
#
|
|
939
|
-
#
|
|
940
|
-
# Identity Center.
|
|
942
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
|
943
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
|
944
|
+
# (including external identity provider integration), plus user and
|
|
945
|
+
# group access to your web portal, can be configured in the IAM Identity
|
|
946
|
+
# Center.
|
|
941
947
|
#
|
|
942
948
|
# @option params [String] :client_token
|
|
943
949
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
@@ -947,7 +953,7 @@ module Aws::WorkSpacesWeb
|
|
|
947
953
|
# client token returns the result from the original successful request.
|
|
948
954
|
#
|
|
949
955
|
# If you do not specify a client token, one is automatically generated
|
|
950
|
-
# by the
|
|
956
|
+
# by the Amazon Web Services SDK.
|
|
951
957
|
#
|
|
952
958
|
# **A suitable default value is auto-generated.** You should normally
|
|
953
959
|
# not need to pass this option.**
|
|
@@ -959,6 +965,12 @@ module Aws::WorkSpacesWeb
|
|
|
959
965
|
# The name of the web portal. This is not visible to users who log into
|
|
960
966
|
# the web portal.
|
|
961
967
|
#
|
|
968
|
+
# @option params [String] :instance_type
|
|
969
|
+
# The type and resources of the underlying instance.
|
|
970
|
+
#
|
|
971
|
+
# @option params [Integer] :max_concurrent_sessions
|
|
972
|
+
# The maximum number of concurrent sessions for the portal.
|
|
973
|
+
#
|
|
962
974
|
# @option params [Array<Types::Tag>] :tags
|
|
963
975
|
# The tags to add to the web portal. A tag is a key-value pair.
|
|
964
976
|
#
|
|
@@ -977,6 +989,8 @@ module Aws::WorkSpacesWeb
|
|
|
977
989
|
# client_token: "ClientToken",
|
|
978
990
|
# customer_managed_key: "keyArn",
|
|
979
991
|
# display_name: "DisplayName",
|
|
992
|
+
# instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
|
|
993
|
+
# max_concurrent_sessions: 1,
|
|
980
994
|
# tags: [
|
|
981
995
|
# {
|
|
982
996
|
# key: "TagKey", # required
|
|
@@ -1018,7 +1032,7 @@ module Aws::WorkSpacesWeb
|
|
|
1018
1032
|
# client token returns the result from the original successful request.
|
|
1019
1033
|
#
|
|
1020
1034
|
# If you do not specify a client token, one is automatically generated
|
|
1021
|
-
# by the
|
|
1035
|
+
# by the Amazon Web Services SDK.
|
|
1022
1036
|
#
|
|
1023
1037
|
# **A suitable default value is auto-generated.** You should normally
|
|
1024
1038
|
# not need to pass this option.**
|
|
@@ -1067,7 +1081,7 @@ module Aws::WorkSpacesWeb
|
|
|
1067
1081
|
# client token returns the result from the original successful request.
|
|
1068
1082
|
#
|
|
1069
1083
|
# If you do not specify a client token, one is automatically generated
|
|
1070
|
-
# by the
|
|
1084
|
+
# by the Amazon Web Services SDK.
|
|
1071
1085
|
#
|
|
1072
1086
|
# **A suitable default value is auto-generated.** You should normally
|
|
1073
1087
|
# not need to pass this option.**
|
|
@@ -1125,7 +1139,7 @@ module Aws::WorkSpacesWeb
|
|
|
1125
1139
|
# client token returns the result from the original successful request.
|
|
1126
1140
|
#
|
|
1127
1141
|
# If you do not specify a client token, one is automatically generated
|
|
1128
|
-
# by the
|
|
1142
|
+
# by the Amazon Web Services SDK.
|
|
1129
1143
|
#
|
|
1130
1144
|
# **A suitable default value is auto-generated.** You should normally
|
|
1131
1145
|
# not need to pass this option.**
|
|
@@ -1551,10 +1565,13 @@ module Aws::WorkSpacesWeb
|
|
|
1551
1565
|
#
|
|
1552
1566
|
# @example Response structure
|
|
1553
1567
|
#
|
|
1568
|
+
# resp.browser_settings.additional_encryption_context #=> Hash
|
|
1569
|
+
# resp.browser_settings.additional_encryption_context["StringType"] #=> String
|
|
1554
1570
|
# resp.browser_settings.associated_portal_arns #=> Array
|
|
1555
1571
|
# resp.browser_settings.associated_portal_arns[0] #=> String
|
|
1556
1572
|
# resp.browser_settings.browser_policy #=> String
|
|
1557
1573
|
# resp.browser_settings.browser_settings_arn #=> String
|
|
1574
|
+
# resp.browser_settings.customer_managed_key #=> String
|
|
1558
1575
|
#
|
|
1559
1576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetBrowserSettings AWS API Documentation
|
|
1560
1577
|
#
|
|
@@ -1614,9 +1631,12 @@ module Aws::WorkSpacesWeb
|
|
|
1614
1631
|
#
|
|
1615
1632
|
# @example Response structure
|
|
1616
1633
|
#
|
|
1634
|
+
# resp.ip_access_settings.additional_encryption_context #=> Hash
|
|
1635
|
+
# resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
|
|
1617
1636
|
# resp.ip_access_settings.associated_portal_arns #=> Array
|
|
1618
1637
|
# resp.ip_access_settings.associated_portal_arns[0] #=> String
|
|
1619
1638
|
# resp.ip_access_settings.creation_date #=> Time
|
|
1639
|
+
# resp.ip_access_settings.customer_managed_key #=> String
|
|
1620
1640
|
# resp.ip_access_settings.description #=> String
|
|
1621
1641
|
# resp.ip_access_settings.display_name #=> String
|
|
1622
1642
|
# resp.ip_access_settings.ip_access_settings_arn #=> String
|
|
@@ -1685,12 +1705,17 @@ module Aws::WorkSpacesWeb
|
|
|
1685
1705
|
#
|
|
1686
1706
|
# @example Response structure
|
|
1687
1707
|
#
|
|
1708
|
+
# resp.portal.additional_encryption_context #=> Hash
|
|
1709
|
+
# resp.portal.additional_encryption_context["StringType"] #=> String
|
|
1688
1710
|
# resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
|
|
1689
1711
|
# resp.portal.browser_settings_arn #=> String
|
|
1690
1712
|
# resp.portal.browser_type #=> String, one of "Chrome"
|
|
1691
1713
|
# resp.portal.creation_date #=> Time
|
|
1714
|
+
# resp.portal.customer_managed_key #=> String
|
|
1692
1715
|
# resp.portal.display_name #=> String
|
|
1716
|
+
# resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
|
|
1693
1717
|
# resp.portal.ip_access_settings_arn #=> String
|
|
1718
|
+
# resp.portal.max_concurrent_sessions #=> Integer
|
|
1694
1719
|
# resp.portal.network_settings_arn #=> String
|
|
1695
1720
|
# resp.portal.portal_arn #=> String
|
|
1696
1721
|
# resp.portal.portal_endpoint #=> String
|
|
@@ -1857,6 +1882,8 @@ module Aws::WorkSpacesWeb
|
|
|
1857
1882
|
#
|
|
1858
1883
|
# @example Response structure
|
|
1859
1884
|
#
|
|
1885
|
+
# resp.user_settings.additional_encryption_context #=> Hash
|
|
1886
|
+
# resp.user_settings.additional_encryption_context["StringType"] #=> String
|
|
1860
1887
|
# resp.user_settings.associated_portal_arns #=> Array
|
|
1861
1888
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
|
1862
1889
|
# resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
|
|
@@ -1868,6 +1895,7 @@ module Aws::WorkSpacesWeb
|
|
|
1868
1895
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
|
|
1869
1896
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
|
|
1870
1897
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
|
1898
|
+
# resp.user_settings.customer_managed_key #=> String
|
|
1871
1899
|
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
|
1872
1900
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
|
1873
1901
|
# resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
|
|
@@ -2079,7 +2107,9 @@ module Aws::WorkSpacesWeb
|
|
|
2079
2107
|
# resp.portals[0].browser_type #=> String, one of "Chrome"
|
|
2080
2108
|
# resp.portals[0].creation_date #=> Time
|
|
2081
2109
|
# resp.portals[0].display_name #=> String
|
|
2110
|
+
# resp.portals[0].instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
|
|
2082
2111
|
# resp.portals[0].ip_access_settings_arn #=> String
|
|
2112
|
+
# resp.portals[0].max_concurrent_sessions #=> Integer
|
|
2083
2113
|
# resp.portals[0].network_settings_arn #=> String
|
|
2084
2114
|
# resp.portals[0].portal_arn #=> String
|
|
2085
2115
|
# resp.portals[0].portal_endpoint #=> String
|
|
@@ -2316,7 +2346,7 @@ module Aws::WorkSpacesWeb
|
|
|
2316
2346
|
# client token returns the result from the original successful request.
|
|
2317
2347
|
#
|
|
2318
2348
|
# If you do not specify a client token, one is automatically generated
|
|
2319
|
-
# by the
|
|
2349
|
+
# by the Amazon Web Services SDK.
|
|
2320
2350
|
#
|
|
2321
2351
|
# **A suitable default value is auto-generated.** You should normally
|
|
2322
2352
|
# not need to pass this option.**
|
|
@@ -2394,7 +2424,7 @@ module Aws::WorkSpacesWeb
|
|
|
2394
2424
|
# client token return the result from the original successful request.
|
|
2395
2425
|
#
|
|
2396
2426
|
# If you do not specify a client token, one is automatically generated
|
|
2397
|
-
# by the
|
|
2427
|
+
# by the Amazon Web Services SDK.
|
|
2398
2428
|
#
|
|
2399
2429
|
# **A suitable default value is auto-generated.** You should normally
|
|
2400
2430
|
# not need to pass this option.**
|
|
@@ -2413,10 +2443,13 @@ module Aws::WorkSpacesWeb
|
|
|
2413
2443
|
#
|
|
2414
2444
|
# @example Response structure
|
|
2415
2445
|
#
|
|
2446
|
+
# resp.browser_settings.additional_encryption_context #=> Hash
|
|
2447
|
+
# resp.browser_settings.additional_encryption_context["StringType"] #=> String
|
|
2416
2448
|
# resp.browser_settings.associated_portal_arns #=> Array
|
|
2417
2449
|
# resp.browser_settings.associated_portal_arns[0] #=> String
|
|
2418
2450
|
# resp.browser_settings.browser_policy #=> String
|
|
2419
2451
|
# resp.browser_settings.browser_settings_arn #=> String
|
|
2452
|
+
# resp.browser_settings.customer_managed_key #=> String
|
|
2420
2453
|
#
|
|
2421
2454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateBrowserSettings AWS API Documentation
|
|
2422
2455
|
#
|
|
@@ -2437,7 +2470,7 @@ module Aws::WorkSpacesWeb
|
|
|
2437
2470
|
# client token return the result from the original successful request.
|
|
2438
2471
|
#
|
|
2439
2472
|
# If you do not specify a client token, one is automatically generated
|
|
2440
|
-
# by the
|
|
2473
|
+
# by the Amazon Web Services SDK.
|
|
2441
2474
|
#
|
|
2442
2475
|
# **A suitable default value is auto-generated.** You should normally
|
|
2443
2476
|
# not need to pass this option.**
|
|
@@ -2509,6 +2542,13 @@ module Aws::WorkSpacesWeb
|
|
|
2509
2542
|
#
|
|
2510
2543
|
# * `IDPSignout` (boolean) *optional*
|
|
2511
2544
|
#
|
|
2545
|
+
# * `IDPInit` (boolean) *optional*
|
|
2546
|
+
#
|
|
2547
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
|
2548
|
+
# `rsa-sha256`
|
|
2549
|
+
#
|
|
2550
|
+
# * `EncryptedResponses` (boolean) *optional*
|
|
2551
|
+
#
|
|
2512
2552
|
# @option params [String] :identity_provider_name
|
|
2513
2553
|
# The name of the identity provider.
|
|
2514
2554
|
#
|
|
@@ -2558,7 +2598,7 @@ module Aws::WorkSpacesWeb
|
|
|
2558
2598
|
# client token return the result from the original successful request.
|
|
2559
2599
|
#
|
|
2560
2600
|
# If you do not specify a client token, one is automatically generated
|
|
2561
|
-
# by the
|
|
2601
|
+
# by the Amazon Web Services SDK.
|
|
2562
2602
|
#
|
|
2563
2603
|
# **A suitable default value is auto-generated.** You should normally
|
|
2564
2604
|
# not need to pass this option.**
|
|
@@ -2596,9 +2636,12 @@ module Aws::WorkSpacesWeb
|
|
|
2596
2636
|
#
|
|
2597
2637
|
# @example Response structure
|
|
2598
2638
|
#
|
|
2639
|
+
# resp.ip_access_settings.additional_encryption_context #=> Hash
|
|
2640
|
+
# resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
|
|
2599
2641
|
# resp.ip_access_settings.associated_portal_arns #=> Array
|
|
2600
2642
|
# resp.ip_access_settings.associated_portal_arns[0] #=> String
|
|
2601
2643
|
# resp.ip_access_settings.creation_date #=> Time
|
|
2644
|
+
# resp.ip_access_settings.customer_managed_key #=> String
|
|
2602
2645
|
# resp.ip_access_settings.description #=> String
|
|
2603
2646
|
# resp.ip_access_settings.display_name #=> String
|
|
2604
2647
|
# resp.ip_access_settings.ip_access_settings_arn #=> String
|
|
@@ -2625,7 +2668,7 @@ module Aws::WorkSpacesWeb
|
|
|
2625
2668
|
# client token return the result from the original successful request.
|
|
2626
2669
|
#
|
|
2627
2670
|
# If you do not specify a client token, one is automatically generated
|
|
2628
|
-
# by the
|
|
2671
|
+
# by the Amazon Web Services SDK.
|
|
2629
2672
|
#
|
|
2630
2673
|
# **A suitable default value is auto-generated.** You should normally
|
|
2631
2674
|
# not need to pass this option.**
|
|
@@ -2691,17 +2734,22 @@ module Aws::WorkSpacesWeb
|
|
|
2691
2734
|
# access to your web portal is controlled through your identity
|
|
2692
2735
|
# provider.
|
|
2693
2736
|
#
|
|
2694
|
-
# `
|
|
2695
|
-
# Identity Center (successor to
|
|
2696
|
-
#
|
|
2697
|
-
#
|
|
2698
|
-
#
|
|
2699
|
-
# Identity Center.
|
|
2737
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
|
2738
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
|
2739
|
+
# (including external identity provider integration), plus user and
|
|
2740
|
+
# group access to your web portal, can be configured in the IAM Identity
|
|
2741
|
+
# Center.
|
|
2700
2742
|
#
|
|
2701
2743
|
# @option params [String] :display_name
|
|
2702
2744
|
# The name of the web portal. This is not visible to users who log into
|
|
2703
2745
|
# the web portal.
|
|
2704
2746
|
#
|
|
2747
|
+
# @option params [String] :instance_type
|
|
2748
|
+
# The type and resources of the underlying instance.
|
|
2749
|
+
#
|
|
2750
|
+
# @option params [Integer] :max_concurrent_sessions
|
|
2751
|
+
# The maximum number of concurrent sessions for the portal.
|
|
2752
|
+
#
|
|
2705
2753
|
# @option params [required, String] :portal_arn
|
|
2706
2754
|
# The ARN of the web portal.
|
|
2707
2755
|
#
|
|
@@ -2714,17 +2762,24 @@ module Aws::WorkSpacesWeb
|
|
|
2714
2762
|
# resp = client.update_portal({
|
|
2715
2763
|
# authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
|
|
2716
2764
|
# display_name: "DisplayName",
|
|
2765
|
+
# instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
|
|
2766
|
+
# max_concurrent_sessions: 1,
|
|
2717
2767
|
# portal_arn: "ARN", # required
|
|
2718
2768
|
# })
|
|
2719
2769
|
#
|
|
2720
2770
|
# @example Response structure
|
|
2721
2771
|
#
|
|
2772
|
+
# resp.portal.additional_encryption_context #=> Hash
|
|
2773
|
+
# resp.portal.additional_encryption_context["StringType"] #=> String
|
|
2722
2774
|
# resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
|
|
2723
2775
|
# resp.portal.browser_settings_arn #=> String
|
|
2724
2776
|
# resp.portal.browser_type #=> String, one of "Chrome"
|
|
2725
2777
|
# resp.portal.creation_date #=> Time
|
|
2778
|
+
# resp.portal.customer_managed_key #=> String
|
|
2726
2779
|
# resp.portal.display_name #=> String
|
|
2780
|
+
# resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
|
|
2727
2781
|
# resp.portal.ip_access_settings_arn #=> String
|
|
2782
|
+
# resp.portal.max_concurrent_sessions #=> Integer
|
|
2728
2783
|
# resp.portal.network_settings_arn #=> String
|
|
2729
2784
|
# resp.portal.portal_arn #=> String
|
|
2730
2785
|
# resp.portal.portal_endpoint #=> String
|
|
@@ -2760,7 +2815,7 @@ module Aws::WorkSpacesWeb
|
|
|
2760
2815
|
# client token return the result from the original successful request.
|
|
2761
2816
|
#
|
|
2762
2817
|
# If you do not specify a client token, one is automatically generated
|
|
2763
|
-
# by the
|
|
2818
|
+
# by the Amazon Web Services SDK.
|
|
2764
2819
|
#
|
|
2765
2820
|
# **A suitable default value is auto-generated.** You should normally
|
|
2766
2821
|
# not need to pass this option.**
|
|
@@ -2804,7 +2859,7 @@ module Aws::WorkSpacesWeb
|
|
|
2804
2859
|
# client token return the result from the original successful request.
|
|
2805
2860
|
#
|
|
2806
2861
|
# If you do not specify a client token, one is automatically generated
|
|
2807
|
-
# by the
|
|
2862
|
+
# by the Amazon Web Services SDK.
|
|
2808
2863
|
#
|
|
2809
2864
|
# **A suitable default value is auto-generated.** You should normally
|
|
2810
2865
|
# not need to pass this option.**
|
|
@@ -2853,7 +2908,7 @@ module Aws::WorkSpacesWeb
|
|
|
2853
2908
|
# client token return the result from the original successful request.
|
|
2854
2909
|
#
|
|
2855
2910
|
# If you do not specify a client token, one is automatically generated
|
|
2856
|
-
# by the
|
|
2911
|
+
# by the Amazon Web Services SDK.
|
|
2857
2912
|
#
|
|
2858
2913
|
# **A suitable default value is auto-generated.** You should normally
|
|
2859
2914
|
# not need to pass this option.**
|
|
@@ -2932,6 +2987,8 @@ module Aws::WorkSpacesWeb
|
|
|
2932
2987
|
#
|
|
2933
2988
|
# @example Response structure
|
|
2934
2989
|
#
|
|
2990
|
+
# resp.user_settings.additional_encryption_context #=> Hash
|
|
2991
|
+
# resp.user_settings.additional_encryption_context["StringType"] #=> String
|
|
2935
2992
|
# resp.user_settings.associated_portal_arns #=> Array
|
|
2936
2993
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
|
2937
2994
|
# resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
|
|
@@ -2943,6 +3000,7 @@ module Aws::WorkSpacesWeb
|
|
|
2943
3000
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
|
|
2944
3001
|
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
|
|
2945
3002
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
|
3003
|
+
# resp.user_settings.customer_managed_key #=> String
|
|
2946
3004
|
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
|
2947
3005
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
|
2948
3006
|
# resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
|
|
@@ -2973,7 +3031,7 @@ module Aws::WorkSpacesWeb
|
|
|
2973
3031
|
params: params,
|
|
2974
3032
|
config: config)
|
|
2975
3033
|
context[:gem_name] = 'aws-sdk-workspacesweb'
|
|
2976
|
-
context[:gem_version] = '1.
|
|
3034
|
+
context[:gem_version] = '1.19.0'
|
|
2977
3035
|
Seahorse::Client::Request.new(handlers, context)
|
|
2978
3036
|
end
|
|
2979
3037
|
|
|
@@ -128,6 +128,7 @@ module Aws::WorkSpacesWeb
|
|
|
128
128
|
IdentityProviderSummary = Shapes::StructureShape.new(name: 'IdentityProviderSummary')
|
|
129
129
|
IdentityProviderType = Shapes::StringShape.new(name: 'IdentityProviderType')
|
|
130
130
|
IdleDisconnectTimeoutInMinutes = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInMinutes')
|
|
131
|
+
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
|
131
132
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
132
133
|
IpAccessSettings = Shapes::StructureShape.new(name: 'IpAccessSettings')
|
|
133
134
|
IpAccessSettingsList = Shapes::ListShape.new(name: 'IpAccessSettingsList')
|
|
@@ -156,6 +157,7 @@ module Aws::WorkSpacesWeb
|
|
|
156
157
|
ListUserAccessLoggingSettingsResponse = Shapes::StructureShape.new(name: 'ListUserAccessLoggingSettingsResponse')
|
|
157
158
|
ListUserSettingsRequest = Shapes::StructureShape.new(name: 'ListUserSettingsRequest')
|
|
158
159
|
ListUserSettingsResponse = Shapes::StructureShape.new(name: 'ListUserSettingsResponse')
|
|
160
|
+
MaxConcurrentSessions = Shapes::IntegerShape.new(name: 'MaxConcurrentSessions')
|
|
159
161
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
160
162
|
NetworkSettings = Shapes::StructureShape.new(name: 'NetworkSettings')
|
|
161
163
|
NetworkSettingsList = Shapes::ListShape.new(name: 'NetworkSettingsList')
|
|
@@ -280,9 +282,11 @@ module Aws::WorkSpacesWeb
|
|
|
280
282
|
AssociateUserSettingsResponse.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userSettingsArn"))
|
|
281
283
|
AssociateUserSettingsResponse.struct_class = Types::AssociateUserSettingsResponse
|
|
282
284
|
|
|
285
|
+
BrowserSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
|
283
286
|
BrowserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
|
284
287
|
BrowserSettings.add_member(:browser_policy, Shapes::ShapeRef.new(shape: BrowserPolicy, location_name: "browserPolicy"))
|
|
285
288
|
BrowserSettings.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "browserSettingsArn"))
|
|
289
|
+
BrowserSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
|
286
290
|
BrowserSettings.struct_class = Types::BrowserSettings
|
|
287
291
|
|
|
288
292
|
BrowserSettingsList.member = Shapes::ShapeRef.new(shape: BrowserSettingsSummary)
|
|
@@ -374,6 +378,8 @@ module Aws::WorkSpacesWeb
|
|
|
374
378
|
CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
|
375
379
|
CreatePortalRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
|
376
380
|
CreatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
|
381
|
+
CreatePortalRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
|
382
|
+
CreatePortalRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
|
377
383
|
CreatePortalRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
378
384
|
CreatePortalRequest.struct_class = Types::CreatePortalRequest
|
|
379
385
|
|
|
@@ -570,8 +576,10 @@ module Aws::WorkSpacesWeb
|
|
|
570
576
|
InternalServerException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
|
|
571
577
|
InternalServerException.struct_class = Types::InternalServerException
|
|
572
578
|
|
|
579
|
+
IpAccessSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
|
573
580
|
IpAccessSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
|
574
581
|
IpAccessSettings.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
|
582
|
+
IpAccessSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
|
575
583
|
IpAccessSettings.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
576
584
|
IpAccessSettings.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
|
577
585
|
IpAccessSettings.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ipAccessSettingsArn"))
|
|
@@ -686,12 +694,16 @@ module Aws::WorkSpacesWeb
|
|
|
686
694
|
NetworkSettingsSummary.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
687
695
|
NetworkSettingsSummary.struct_class = Types::NetworkSettingsSummary
|
|
688
696
|
|
|
697
|
+
Portal.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
|
689
698
|
Portal.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
|
690
699
|
Portal.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "browserSettingsArn"))
|
|
691
700
|
Portal.add_member(:browser_type, Shapes::ShapeRef.new(shape: BrowserType, location_name: "browserType"))
|
|
692
701
|
Portal.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
|
702
|
+
Portal.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
|
693
703
|
Portal.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
|
704
|
+
Portal.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
|
694
705
|
Portal.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
|
706
|
+
Portal.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
|
695
707
|
Portal.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
|
696
708
|
Portal.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
|
697
709
|
Portal.add_member(:portal_endpoint, Shapes::ShapeRef.new(shape: PortalEndpoint, location_name: "portalEndpoint"))
|
|
@@ -710,7 +722,9 @@ module Aws::WorkSpacesWeb
|
|
|
710
722
|
PortalSummary.add_member(:browser_type, Shapes::ShapeRef.new(shape: BrowserType, location_name: "browserType"))
|
|
711
723
|
PortalSummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
|
712
724
|
PortalSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
|
725
|
+
PortalSummary.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
|
713
726
|
PortalSummary.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
|
727
|
+
PortalSummary.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
|
714
728
|
PortalSummary.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
|
715
729
|
PortalSummary.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
|
716
730
|
PortalSummary.add_member(:portal_endpoint, Shapes::ShapeRef.new(shape: PortalEndpoint, location_name: "portalEndpoint"))
|
|
@@ -817,6 +831,8 @@ module Aws::WorkSpacesWeb
|
|
|
817
831
|
|
|
818
832
|
UpdatePortalRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
|
819
833
|
UpdatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
|
834
|
+
UpdatePortalRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
|
835
|
+
UpdatePortalRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: MaxConcurrentSessions, location_name: "maxConcurrentSessions"))
|
|
820
836
|
UpdatePortalRequest.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "portalArn"))
|
|
821
837
|
UpdatePortalRequest.struct_class = Types::UpdatePortalRequest
|
|
822
838
|
|
|
@@ -866,9 +882,11 @@ module Aws::WorkSpacesWeb
|
|
|
866
882
|
UserAccessLoggingSettingsSummary.add_member(:user_access_logging_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userAccessLoggingSettingsArn"))
|
|
867
883
|
UserAccessLoggingSettingsSummary.struct_class = Types::UserAccessLoggingSettingsSummary
|
|
868
884
|
|
|
885
|
+
UserSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
|
869
886
|
UserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
|
870
887
|
UserSettings.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
|
871
888
|
UserSettings.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
|
889
|
+
UserSettings.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
|
872
890
|
UserSettings.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
|
873
891
|
UserSettings.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
|
874
892
|
UserSettings.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
|
@@ -1695,6 +1713,7 @@ module Aws::WorkSpacesWeb
|
|
|
1695
1713
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1696
1714
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1697
1715
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1716
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1698
1717
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1699
1718
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1700
1719
|
end)
|
|
@@ -32,7 +32,7 @@ module Aws::WorkSpacesWeb
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://workspaces-web-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
@@ -232,6 +232,10 @@ module Aws::WorkSpacesWeb
|
|
|
232
232
|
# how the browser will behave once a user starts a streaming session for
|
|
233
233
|
# the web portal.
|
|
234
234
|
#
|
|
235
|
+
# @!attribute [rw] additional_encryption_context
|
|
236
|
+
# The additional encryption context of the browser settings.
|
|
237
|
+
# @return [Hash<String,String>]
|
|
238
|
+
#
|
|
235
239
|
# @!attribute [rw] associated_portal_arns
|
|
236
240
|
# A list of web portal ARNs that this browser settings is associated
|
|
237
241
|
# with.
|
|
@@ -246,12 +250,19 @@ module Aws::WorkSpacesWeb
|
|
|
246
250
|
# The ARN of the browser settings.
|
|
247
251
|
# @return [String]
|
|
248
252
|
#
|
|
253
|
+
# @!attribute [rw] customer_managed_key
|
|
254
|
+
# The customer managed key used to encrypt sensitive information in
|
|
255
|
+
# the browser settings.
|
|
256
|
+
# @return [String]
|
|
257
|
+
#
|
|
249
258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/BrowserSettings AWS API Documentation
|
|
250
259
|
#
|
|
251
260
|
class BrowserSettings < Struct.new(
|
|
261
|
+
:additional_encryption_context,
|
|
252
262
|
:associated_portal_arns,
|
|
253
263
|
:browser_policy,
|
|
254
|
-
:browser_settings_arn
|
|
264
|
+
:browser_settings_arn,
|
|
265
|
+
:customer_managed_key)
|
|
255
266
|
SENSITIVE = [:browser_policy]
|
|
256
267
|
include Aws::Structure
|
|
257
268
|
end
|
|
@@ -386,7 +397,7 @@ module Aws::WorkSpacesWeb
|
|
|
386
397
|
:domain,
|
|
387
398
|
:name,
|
|
388
399
|
:path)
|
|
389
|
-
SENSITIVE = []
|
|
400
|
+
SENSITIVE = [:domain, :name, :path]
|
|
390
401
|
include Aws::Structure
|
|
391
402
|
end
|
|
392
403
|
|
|
@@ -430,7 +441,7 @@ module Aws::WorkSpacesWeb
|
|
|
430
441
|
# request.
|
|
431
442
|
#
|
|
432
443
|
# If you do not specify a client token, one is automatically generated
|
|
433
|
-
# by the
|
|
444
|
+
# by the Amazon Web Services SDK.
|
|
434
445
|
#
|
|
435
446
|
# **A suitable default value is auto-generated.** You should normally
|
|
436
447
|
# not need to pass this option.
|
|
@@ -478,7 +489,7 @@ module Aws::WorkSpacesWeb
|
|
|
478
489
|
# request.
|
|
479
490
|
#
|
|
480
491
|
# If you do not specify a client token, one is automatically generated
|
|
481
|
-
# by the
|
|
492
|
+
# by the Amazon Web Services SDK.
|
|
482
493
|
#
|
|
483
494
|
# **A suitable default value is auto-generated.** You should normally
|
|
484
495
|
# not need to pass this option.
|
|
@@ -547,6 +558,13 @@ module Aws::WorkSpacesWeb
|
|
|
547
558
|
# * `MetadataFile` OR `MetadataURL`
|
|
548
559
|
#
|
|
549
560
|
# * `IDPSignout` (boolean) *optional*
|
|
561
|
+
#
|
|
562
|
+
# * `IDPInit` (boolean) *optional*
|
|
563
|
+
#
|
|
564
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
|
565
|
+
# `rsa-sha256`
|
|
566
|
+
#
|
|
567
|
+
# * `EncryptedResponses` (boolean) *optional*
|
|
550
568
|
# @return [Hash<String,String>]
|
|
551
569
|
#
|
|
552
570
|
# @!attribute [rw] identity_provider_name
|
|
@@ -598,7 +616,7 @@ module Aws::WorkSpacesWeb
|
|
|
598
616
|
# request.
|
|
599
617
|
#
|
|
600
618
|
# If you do not specify a client token, one is automatically generated
|
|
601
|
-
# by the
|
|
619
|
+
# by the Amazon Web Services SDK.
|
|
602
620
|
#
|
|
603
621
|
# **A suitable default value is auto-generated.** You should normally
|
|
604
622
|
# not need to pass this option.
|
|
@@ -660,7 +678,7 @@ module Aws::WorkSpacesWeb
|
|
|
660
678
|
# request.
|
|
661
679
|
#
|
|
662
680
|
# If you do not specify a client token, one is automatically generated
|
|
663
|
-
# by the
|
|
681
|
+
# by the Amazon Web Services SDK.
|
|
664
682
|
#
|
|
665
683
|
# **A suitable default value is auto-generated.** You should normally
|
|
666
684
|
# not need to pass this option.
|
|
@@ -724,12 +742,11 @@ module Aws::WorkSpacesWeb
|
|
|
724
742
|
# group access to your web portal is controlled through your identity
|
|
725
743
|
# provider.
|
|
726
744
|
#
|
|
727
|
-
# `
|
|
728
|
-
# Identity Center (successor to
|
|
729
|
-
#
|
|
730
|
-
#
|
|
731
|
-
#
|
|
732
|
-
# IAM Identity Center.
|
|
745
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
|
746
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
|
747
|
+
# (including external identity provider integration), plus user and
|
|
748
|
+
# group access to your web portal, can be configured in the IAM
|
|
749
|
+
# Identity Center.
|
|
733
750
|
# @return [String]
|
|
734
751
|
#
|
|
735
752
|
# @!attribute [rw] client_token
|
|
@@ -741,7 +758,7 @@ module Aws::WorkSpacesWeb
|
|
|
741
758
|
# request.
|
|
742
759
|
#
|
|
743
760
|
# If you do not specify a client token, one is automatically generated
|
|
744
|
-
# by the
|
|
761
|
+
# by the Amazon Web Services SDK.
|
|
745
762
|
#
|
|
746
763
|
# **A suitable default value is auto-generated.** You should normally
|
|
747
764
|
# not need to pass this option.
|
|
@@ -756,6 +773,14 @@ module Aws::WorkSpacesWeb
|
|
|
756
773
|
# into the web portal.
|
|
757
774
|
# @return [String]
|
|
758
775
|
#
|
|
776
|
+
# @!attribute [rw] instance_type
|
|
777
|
+
# The type and resources of the underlying instance.
|
|
778
|
+
# @return [String]
|
|
779
|
+
#
|
|
780
|
+
# @!attribute [rw] max_concurrent_sessions
|
|
781
|
+
# The maximum number of concurrent sessions for the portal.
|
|
782
|
+
# @return [Integer]
|
|
783
|
+
#
|
|
759
784
|
# @!attribute [rw] tags
|
|
760
785
|
# The tags to add to the web portal. A tag is a key-value pair.
|
|
761
786
|
# @return [Array<Types::Tag>]
|
|
@@ -768,6 +793,8 @@ module Aws::WorkSpacesWeb
|
|
|
768
793
|
:client_token,
|
|
769
794
|
:customer_managed_key,
|
|
770
795
|
:display_name,
|
|
796
|
+
:instance_type,
|
|
797
|
+
:max_concurrent_sessions,
|
|
771
798
|
:tags)
|
|
772
799
|
SENSITIVE = [:display_name]
|
|
773
800
|
include Aws::Structure
|
|
@@ -804,7 +831,7 @@ module Aws::WorkSpacesWeb
|
|
|
804
831
|
# request.
|
|
805
832
|
#
|
|
806
833
|
# If you do not specify a client token, one is automatically generated
|
|
807
|
-
# by the
|
|
834
|
+
# by the Amazon Web Services SDK.
|
|
808
835
|
#
|
|
809
836
|
# **A suitable default value is auto-generated.** You should normally
|
|
810
837
|
# not need to pass this option.
|
|
@@ -845,7 +872,7 @@ module Aws::WorkSpacesWeb
|
|
|
845
872
|
# request.
|
|
846
873
|
#
|
|
847
874
|
# If you do not specify a client token, one is automatically generated
|
|
848
|
-
# by the
|
|
875
|
+
# by the Amazon Web Services SDK.
|
|
849
876
|
#
|
|
850
877
|
# **A suitable default value is auto-generated.** You should normally
|
|
851
878
|
# not need to pass this option.
|
|
@@ -895,7 +922,7 @@ module Aws::WorkSpacesWeb
|
|
|
895
922
|
# request.
|
|
896
923
|
#
|
|
897
924
|
# If you do not specify a client token, one is automatically generated
|
|
898
|
-
# by the
|
|
925
|
+
# by the Amazon Web Services SDK.
|
|
899
926
|
#
|
|
900
927
|
# **A suitable default value is auto-generated.** You should normally
|
|
901
928
|
# not need to pass this option.
|
|
@@ -1530,7 +1557,14 @@ module Aws::WorkSpacesWeb
|
|
|
1530
1557
|
#
|
|
1531
1558
|
# * `MetadataFile` OR `MetadataURL`
|
|
1532
1559
|
#
|
|
1533
|
-
# * `IDPSignout` *optional*
|
|
1560
|
+
# * `IDPSignout` (boolean) *optional*
|
|
1561
|
+
#
|
|
1562
|
+
# * `IDPInit` (boolean) *optional*
|
|
1563
|
+
#
|
|
1564
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
|
1565
|
+
# `rsa-sha256`
|
|
1566
|
+
#
|
|
1567
|
+
# * `EncryptedResponses` (boolean) *optional*
|
|
1534
1568
|
# @return [Hash<String,String>]
|
|
1535
1569
|
#
|
|
1536
1570
|
# @!attribute [rw] identity_provider_name
|
|
@@ -1597,6 +1631,10 @@ module Aws::WorkSpacesWeb
|
|
|
1597
1631
|
# The IP access settings resource that can be associated with a web
|
|
1598
1632
|
# portal.
|
|
1599
1633
|
#
|
|
1634
|
+
# @!attribute [rw] additional_encryption_context
|
|
1635
|
+
# The additional encryption context of the IP access settings.
|
|
1636
|
+
# @return [Hash<String,String>]
|
|
1637
|
+
#
|
|
1600
1638
|
# @!attribute [rw] associated_portal_arns
|
|
1601
1639
|
# A list of web portal ARNs that this IP access settings resource is
|
|
1602
1640
|
# associated with.
|
|
@@ -1606,6 +1644,11 @@ module Aws::WorkSpacesWeb
|
|
|
1606
1644
|
# The creation date timestamp of the IP access settings.
|
|
1607
1645
|
# @return [Time]
|
|
1608
1646
|
#
|
|
1647
|
+
# @!attribute [rw] customer_managed_key
|
|
1648
|
+
# The customer managed key used to encrypt sensitive information in
|
|
1649
|
+
# the IP access settings.
|
|
1650
|
+
# @return [String]
|
|
1651
|
+
#
|
|
1609
1652
|
# @!attribute [rw] description
|
|
1610
1653
|
# The description of the IP access settings.
|
|
1611
1654
|
# @return [String]
|
|
@@ -1625,8 +1668,10 @@ module Aws::WorkSpacesWeb
|
|
|
1625
1668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpAccessSettings AWS API Documentation
|
|
1626
1669
|
#
|
|
1627
1670
|
class IpAccessSettings < Struct.new(
|
|
1671
|
+
:additional_encryption_context,
|
|
1628
1672
|
:associated_portal_arns,
|
|
1629
1673
|
:creation_date,
|
|
1674
|
+
:customer_managed_key,
|
|
1630
1675
|
:description,
|
|
1631
1676
|
:display_name,
|
|
1632
1677
|
:ip_access_settings_arn,
|
|
@@ -2107,6 +2152,10 @@ module Aws::WorkSpacesWeb
|
|
|
2107
2152
|
|
|
2108
2153
|
# The web portal.
|
|
2109
2154
|
#
|
|
2155
|
+
# @!attribute [rw] additional_encryption_context
|
|
2156
|
+
# The additional encryption context of the portal.
|
|
2157
|
+
# @return [Hash<String,String>]
|
|
2158
|
+
#
|
|
2110
2159
|
# @!attribute [rw] authentication_type
|
|
2111
2160
|
# The type of authentication integration points used when signing into
|
|
2112
2161
|
# the web portal. Defaults to `Standard`.
|
|
@@ -2117,12 +2166,11 @@ module Aws::WorkSpacesWeb
|
|
|
2117
2166
|
# group access to your web portal is controlled through your identity
|
|
2118
2167
|
# provider.
|
|
2119
2168
|
#
|
|
2120
|
-
# `
|
|
2121
|
-
# Identity Center (successor to
|
|
2122
|
-
#
|
|
2123
|
-
#
|
|
2124
|
-
#
|
|
2125
|
-
# IAM Identity Center.
|
|
2169
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
|
2170
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
|
2171
|
+
# (including external identity provider integration), plus user and
|
|
2172
|
+
# group access to your web portal, can be configured in the IAM
|
|
2173
|
+
# Identity Center.
|
|
2126
2174
|
# @return [String]
|
|
2127
2175
|
#
|
|
2128
2176
|
# @!attribute [rw] browser_settings_arn
|
|
@@ -2138,14 +2186,27 @@ module Aws::WorkSpacesWeb
|
|
|
2138
2186
|
# The creation date of the web portal.
|
|
2139
2187
|
# @return [Time]
|
|
2140
2188
|
#
|
|
2189
|
+
# @!attribute [rw] customer_managed_key
|
|
2190
|
+
# The customer managed key used to encrypt sensitive information in
|
|
2191
|
+
# the portal.
|
|
2192
|
+
# @return [String]
|
|
2193
|
+
#
|
|
2141
2194
|
# @!attribute [rw] display_name
|
|
2142
2195
|
# The name of the web portal.
|
|
2143
2196
|
# @return [String]
|
|
2144
2197
|
#
|
|
2198
|
+
# @!attribute [rw] instance_type
|
|
2199
|
+
# The type and resources of the underlying instance.
|
|
2200
|
+
# @return [String]
|
|
2201
|
+
#
|
|
2145
2202
|
# @!attribute [rw] ip_access_settings_arn
|
|
2146
2203
|
# The ARN of the IP access settings.
|
|
2147
2204
|
# @return [String]
|
|
2148
2205
|
#
|
|
2206
|
+
# @!attribute [rw] max_concurrent_sessions
|
|
2207
|
+
# The maximum number of concurrent sessions for the portal.
|
|
2208
|
+
# @return [Integer]
|
|
2209
|
+
#
|
|
2149
2210
|
# @!attribute [rw] network_settings_arn
|
|
2150
2211
|
# The ARN of the network settings that is associated with the web
|
|
2151
2212
|
# portal.
|
|
@@ -2188,12 +2249,16 @@ module Aws::WorkSpacesWeb
|
|
|
2188
2249
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Portal AWS API Documentation
|
|
2189
2250
|
#
|
|
2190
2251
|
class Portal < Struct.new(
|
|
2252
|
+
:additional_encryption_context,
|
|
2191
2253
|
:authentication_type,
|
|
2192
2254
|
:browser_settings_arn,
|
|
2193
2255
|
:browser_type,
|
|
2194
2256
|
:creation_date,
|
|
2257
|
+
:customer_managed_key,
|
|
2195
2258
|
:display_name,
|
|
2259
|
+
:instance_type,
|
|
2196
2260
|
:ip_access_settings_arn,
|
|
2261
|
+
:max_concurrent_sessions,
|
|
2197
2262
|
:network_settings_arn,
|
|
2198
2263
|
:portal_arn,
|
|
2199
2264
|
:portal_endpoint,
|
|
@@ -2219,12 +2284,11 @@ module Aws::WorkSpacesWeb
|
|
|
2219
2284
|
# group access to your web portal is controlled through your identity
|
|
2220
2285
|
# provider.
|
|
2221
2286
|
#
|
|
2222
|
-
# `
|
|
2223
|
-
# Identity Center (successor to
|
|
2224
|
-
#
|
|
2225
|
-
#
|
|
2226
|
-
#
|
|
2227
|
-
# IAM Identity Center.
|
|
2287
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
|
2288
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
|
2289
|
+
# (including external identity provider integration), plus user and
|
|
2290
|
+
# group access to your web portal, can be configured in the IAM
|
|
2291
|
+
# Identity Center.
|
|
2228
2292
|
# @return [String]
|
|
2229
2293
|
#
|
|
2230
2294
|
# @!attribute [rw] browser_settings_arn
|
|
@@ -2244,10 +2308,18 @@ module Aws::WorkSpacesWeb
|
|
|
2244
2308
|
# The name of the web portal.
|
|
2245
2309
|
# @return [String]
|
|
2246
2310
|
#
|
|
2311
|
+
# @!attribute [rw] instance_type
|
|
2312
|
+
# The type and resources of the underlying instance.
|
|
2313
|
+
# @return [String]
|
|
2314
|
+
#
|
|
2247
2315
|
# @!attribute [rw] ip_access_settings_arn
|
|
2248
2316
|
# The ARN of the IP access settings.
|
|
2249
2317
|
# @return [String]
|
|
2250
2318
|
#
|
|
2319
|
+
# @!attribute [rw] max_concurrent_sessions
|
|
2320
|
+
# The maximum number of concurrent sessions for the portal.
|
|
2321
|
+
# @return [Integer]
|
|
2322
|
+
#
|
|
2251
2323
|
# @!attribute [rw] network_settings_arn
|
|
2252
2324
|
# The ARN of the network settings that is associated with the web
|
|
2253
2325
|
# portal.
|
|
@@ -2291,7 +2363,9 @@ module Aws::WorkSpacesWeb
|
|
|
2291
2363
|
:browser_type,
|
|
2292
2364
|
:creation_date,
|
|
2293
2365
|
:display_name,
|
|
2366
|
+
:instance_type,
|
|
2294
2367
|
:ip_access_settings_arn,
|
|
2368
|
+
:max_concurrent_sessions,
|
|
2295
2369
|
:network_settings_arn,
|
|
2296
2370
|
:portal_arn,
|
|
2297
2371
|
:portal_endpoint,
|
|
@@ -2388,7 +2462,7 @@ module Aws::WorkSpacesWeb
|
|
|
2388
2462
|
# request.
|
|
2389
2463
|
#
|
|
2390
2464
|
# If you do not specify a client token, one is automatically generated
|
|
2391
|
-
# by the
|
|
2465
|
+
# by the Amazon Web Services SDK.
|
|
2392
2466
|
#
|
|
2393
2467
|
# **A suitable default value is auto-generated.** You should normally
|
|
2394
2468
|
# not need to pass this option.
|
|
@@ -2539,7 +2613,7 @@ module Aws::WorkSpacesWeb
|
|
|
2539
2613
|
# client token return the result from the original successful request.
|
|
2540
2614
|
#
|
|
2541
2615
|
# If you do not specify a client token, one is automatically generated
|
|
2542
|
-
# by the
|
|
2616
|
+
# by the Amazon Web Services SDK.
|
|
2543
2617
|
#
|
|
2544
2618
|
# **A suitable default value is auto-generated.** You should normally
|
|
2545
2619
|
# not need to pass this option.
|
|
@@ -2575,7 +2649,7 @@ module Aws::WorkSpacesWeb
|
|
|
2575
2649
|
# client token return the result from the original successful request.
|
|
2576
2650
|
#
|
|
2577
2651
|
# If you do not specify a client token, one is automatically generated
|
|
2578
|
-
# by the
|
|
2652
|
+
# by the Amazon Web Services SDK.
|
|
2579
2653
|
#
|
|
2580
2654
|
# **A suitable default value is auto-generated.** You should normally
|
|
2581
2655
|
# not need to pass this option.
|
|
@@ -2648,6 +2722,13 @@ module Aws::WorkSpacesWeb
|
|
|
2648
2722
|
# * `MetadataFile` OR `MetadataURL`
|
|
2649
2723
|
#
|
|
2650
2724
|
# * `IDPSignout` (boolean) *optional*
|
|
2725
|
+
#
|
|
2726
|
+
# * `IDPInit` (boolean) *optional*
|
|
2727
|
+
#
|
|
2728
|
+
# * `RequestSigningAlgorithm` (string) *optional* - Only accepts
|
|
2729
|
+
# `rsa-sha256`
|
|
2730
|
+
#
|
|
2731
|
+
# * `EncryptedResponses` (boolean) *optional*
|
|
2651
2732
|
# @return [Hash<String,String>]
|
|
2652
2733
|
#
|
|
2653
2734
|
# @!attribute [rw] identity_provider_name
|
|
@@ -2690,7 +2771,7 @@ module Aws::WorkSpacesWeb
|
|
|
2690
2771
|
# client token return the result from the original successful request.
|
|
2691
2772
|
#
|
|
2692
2773
|
# If you do not specify a client token, one is automatically generated
|
|
2693
|
-
# by the
|
|
2774
|
+
# by the Amazon Web Services SDK.
|
|
2694
2775
|
#
|
|
2695
2776
|
# **A suitable default value is auto-generated.** You should normally
|
|
2696
2777
|
# not need to pass this option.
|
|
@@ -2744,7 +2825,7 @@ module Aws::WorkSpacesWeb
|
|
|
2744
2825
|
# client token return the result from the original successful request.
|
|
2745
2826
|
#
|
|
2746
2827
|
# If you do not specify a client token, one is automatically generated
|
|
2747
|
-
# by the
|
|
2828
|
+
# by the Amazon Web Services SDK.
|
|
2748
2829
|
#
|
|
2749
2830
|
# **A suitable default value is auto-generated.** You should normally
|
|
2750
2831
|
# not need to pass this option.
|
|
@@ -2803,12 +2884,11 @@ module Aws::WorkSpacesWeb
|
|
|
2803
2884
|
# group access to your web portal is controlled through your identity
|
|
2804
2885
|
# provider.
|
|
2805
2886
|
#
|
|
2806
|
-
# `
|
|
2807
|
-
# Identity Center (successor to
|
|
2808
|
-
#
|
|
2809
|
-
#
|
|
2810
|
-
#
|
|
2811
|
-
# IAM Identity Center.
|
|
2887
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
|
2888
|
+
# Identity Center (successor to Single Sign-On). Identity sources
|
|
2889
|
+
# (including external identity provider integration), plus user and
|
|
2890
|
+
# group access to your web portal, can be configured in the IAM
|
|
2891
|
+
# Identity Center.
|
|
2812
2892
|
# @return [String]
|
|
2813
2893
|
#
|
|
2814
2894
|
# @!attribute [rw] display_name
|
|
@@ -2816,6 +2896,14 @@ module Aws::WorkSpacesWeb
|
|
|
2816
2896
|
# into the web portal.
|
|
2817
2897
|
# @return [String]
|
|
2818
2898
|
#
|
|
2899
|
+
# @!attribute [rw] instance_type
|
|
2900
|
+
# The type and resources of the underlying instance.
|
|
2901
|
+
# @return [String]
|
|
2902
|
+
#
|
|
2903
|
+
# @!attribute [rw] max_concurrent_sessions
|
|
2904
|
+
# The maximum number of concurrent sessions for the portal.
|
|
2905
|
+
# @return [Integer]
|
|
2906
|
+
#
|
|
2819
2907
|
# @!attribute [rw] portal_arn
|
|
2820
2908
|
# The ARN of the web portal.
|
|
2821
2909
|
# @return [String]
|
|
@@ -2825,6 +2913,8 @@ module Aws::WorkSpacesWeb
|
|
|
2825
2913
|
class UpdatePortalRequest < Struct.new(
|
|
2826
2914
|
:authentication_type,
|
|
2827
2915
|
:display_name,
|
|
2916
|
+
:instance_type,
|
|
2917
|
+
:max_concurrent_sessions,
|
|
2828
2918
|
:portal_arn)
|
|
2829
2919
|
SENSITIVE = [:display_name]
|
|
2830
2920
|
include Aws::Structure
|
|
@@ -2858,7 +2948,7 @@ module Aws::WorkSpacesWeb
|
|
|
2858
2948
|
# client token return the result from the original successful request.
|
|
2859
2949
|
#
|
|
2860
2950
|
# If you do not specify a client token, one is automatically generated
|
|
2861
|
-
# by the
|
|
2951
|
+
# by the Amazon Web Services SDK.
|
|
2862
2952
|
#
|
|
2863
2953
|
# **A suitable default value is auto-generated.** You should normally
|
|
2864
2954
|
# not need to pass this option.
|
|
@@ -2899,7 +2989,7 @@ module Aws::WorkSpacesWeb
|
|
|
2899
2989
|
# client token return the result from the original successful request.
|
|
2900
2990
|
#
|
|
2901
2991
|
# If you do not specify a client token, one is automatically generated
|
|
2902
|
-
# by the
|
|
2992
|
+
# by the Amazon Web Services SDK.
|
|
2903
2993
|
#
|
|
2904
2994
|
# **A suitable default value is auto-generated.** You should normally
|
|
2905
2995
|
# not need to pass this option.
|
|
@@ -2943,7 +3033,7 @@ module Aws::WorkSpacesWeb
|
|
|
2943
3033
|
# client token return the result from the original successful request.
|
|
2944
3034
|
#
|
|
2945
3035
|
# If you do not specify a client token, one is automatically generated
|
|
2946
|
-
# by the
|
|
3036
|
+
# by the Amazon Web Services SDK.
|
|
2947
3037
|
#
|
|
2948
3038
|
# **A suitable default value is auto-generated.** You should normally
|
|
2949
3039
|
# not need to pass this option.
|
|
@@ -3075,6 +3165,10 @@ module Aws::WorkSpacesWeb
|
|
|
3075
3165
|
# Once associated with a web portal, user settings control how users can
|
|
3076
3166
|
# transfer data between a streaming session and the their local devices.
|
|
3077
3167
|
#
|
|
3168
|
+
# @!attribute [rw] additional_encryption_context
|
|
3169
|
+
# The additional encryption context of the user settings.
|
|
3170
|
+
# @return [Hash<String,String>]
|
|
3171
|
+
#
|
|
3078
3172
|
# @!attribute [rw] associated_portal_arns
|
|
3079
3173
|
# A list of web portal ARNs that this user settings is associated
|
|
3080
3174
|
# with.
|
|
@@ -3091,6 +3185,11 @@ module Aws::WorkSpacesWeb
|
|
|
3091
3185
|
# to the local device.
|
|
3092
3186
|
# @return [String]
|
|
3093
3187
|
#
|
|
3188
|
+
# @!attribute [rw] customer_managed_key
|
|
3189
|
+
# The customer managed key used to encrypt sensitive information in
|
|
3190
|
+
# the user settings.
|
|
3191
|
+
# @return [String]
|
|
3192
|
+
#
|
|
3094
3193
|
# @!attribute [rw] disconnect_timeout_in_minutes
|
|
3095
3194
|
# The amount of time that a streaming session remains active after
|
|
3096
3195
|
# users disconnect.
|
|
@@ -3128,9 +3227,11 @@ module Aws::WorkSpacesWeb
|
|
|
3128
3227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettings AWS API Documentation
|
|
3129
3228
|
#
|
|
3130
3229
|
class UserSettings < Struct.new(
|
|
3230
|
+
:additional_encryption_context,
|
|
3131
3231
|
:associated_portal_arns,
|
|
3132
3232
|
:cookie_synchronization_configuration,
|
|
3133
3233
|
:copy_allowed,
|
|
3234
|
+
:customer_managed_key,
|
|
3134
3235
|
:disconnect_timeout_in_minutes,
|
|
3135
3236
|
:download_allowed,
|
|
3136
3237
|
:idle_disconnect_timeout_in_minutes,
|
data/sig/client.rbs
CHANGED
|
@@ -234,6 +234,8 @@ module Aws
|
|
|
234
234
|
?client_token: ::String,
|
|
235
235
|
?customer_managed_key: ::String,
|
|
236
236
|
?display_name: ::String,
|
|
237
|
+
?instance_type: ("standard.regular" | "standard.large" | "standard.xlarge"),
|
|
238
|
+
?max_concurrent_sessions: ::Integer,
|
|
237
239
|
?tags: Array[
|
|
238
240
|
{
|
|
239
241
|
key: ::String,
|
|
@@ -761,6 +763,8 @@ module Aws
|
|
|
761
763
|
def update_portal: (
|
|
762
764
|
?authentication_type: ("Standard" | "IAM_Identity_Center"),
|
|
763
765
|
?display_name: ::String,
|
|
766
|
+
?instance_type: ("standard.regular" | "standard.large" | "standard.xlarge"),
|
|
767
|
+
?max_concurrent_sessions: ::Integer,
|
|
764
768
|
portal_arn: ::String
|
|
765
769
|
) -> _UpdatePortalResponseSuccess
|
|
766
770
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePortalResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -86,9 +86,11 @@ module Aws::WorkSpacesWeb
|
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
class BrowserSettings
|
|
89
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
89
90
|
attr_accessor associated_portal_arns: ::Array[::String]
|
|
90
91
|
attr_accessor browser_policy: ::String
|
|
91
92
|
attr_accessor browser_settings_arn: ::String
|
|
93
|
+
attr_accessor customer_managed_key: ::String
|
|
92
94
|
SENSITIVE: [:browser_policy]
|
|
93
95
|
end
|
|
94
96
|
|
|
@@ -127,7 +129,7 @@ module Aws::WorkSpacesWeb
|
|
|
127
129
|
attr_accessor domain: ::String
|
|
128
130
|
attr_accessor name: ::String
|
|
129
131
|
attr_accessor path: ::String
|
|
130
|
-
SENSITIVE: []
|
|
132
|
+
SENSITIVE: [:domain, :name, :path]
|
|
131
133
|
end
|
|
132
134
|
|
|
133
135
|
class CookieSynchronizationConfiguration
|
|
@@ -200,6 +202,8 @@ module Aws::WorkSpacesWeb
|
|
|
200
202
|
attr_accessor client_token: ::String
|
|
201
203
|
attr_accessor customer_managed_key: ::String
|
|
202
204
|
attr_accessor display_name: ::String
|
|
205
|
+
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
|
206
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
|
203
207
|
attr_accessor tags: ::Array[Types::Tag]
|
|
204
208
|
SENSITIVE: [:display_name]
|
|
205
209
|
end
|
|
@@ -492,8 +496,10 @@ module Aws::WorkSpacesWeb
|
|
|
492
496
|
end
|
|
493
497
|
|
|
494
498
|
class IpAccessSettings
|
|
499
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
495
500
|
attr_accessor associated_portal_arns: ::Array[::String]
|
|
496
501
|
attr_accessor creation_date: ::Time
|
|
502
|
+
attr_accessor customer_managed_key: ::String
|
|
497
503
|
attr_accessor description: ::String
|
|
498
504
|
attr_accessor display_name: ::String
|
|
499
505
|
attr_accessor ip_access_settings_arn: ::String
|
|
@@ -652,12 +658,16 @@ module Aws::WorkSpacesWeb
|
|
|
652
658
|
end
|
|
653
659
|
|
|
654
660
|
class Portal
|
|
661
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
655
662
|
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
|
656
663
|
attr_accessor browser_settings_arn: ::String
|
|
657
664
|
attr_accessor browser_type: ("Chrome")
|
|
658
665
|
attr_accessor creation_date: ::Time
|
|
666
|
+
attr_accessor customer_managed_key: ::String
|
|
659
667
|
attr_accessor display_name: ::String
|
|
668
|
+
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
|
660
669
|
attr_accessor ip_access_settings_arn: ::String
|
|
670
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
|
661
671
|
attr_accessor network_settings_arn: ::String
|
|
662
672
|
attr_accessor portal_arn: ::String
|
|
663
673
|
attr_accessor portal_endpoint: ::String
|
|
@@ -676,7 +686,9 @@ module Aws::WorkSpacesWeb
|
|
|
676
686
|
attr_accessor browser_type: ("Chrome")
|
|
677
687
|
attr_accessor creation_date: ::Time
|
|
678
688
|
attr_accessor display_name: ::String
|
|
689
|
+
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
|
679
690
|
attr_accessor ip_access_settings_arn: ::String
|
|
691
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
|
680
692
|
attr_accessor network_settings_arn: ::String
|
|
681
693
|
attr_accessor portal_arn: ::String
|
|
682
694
|
attr_accessor portal_endpoint: ::String
|
|
@@ -811,6 +823,8 @@ module Aws::WorkSpacesWeb
|
|
|
811
823
|
class UpdatePortalRequest
|
|
812
824
|
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
|
813
825
|
attr_accessor display_name: ::String
|
|
826
|
+
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
|
827
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
|
814
828
|
attr_accessor portal_arn: ::String
|
|
815
829
|
SENSITIVE: [:display_name]
|
|
816
830
|
end
|
|
@@ -878,9 +892,11 @@ module Aws::WorkSpacesWeb
|
|
|
878
892
|
end
|
|
879
893
|
|
|
880
894
|
class UserSettings
|
|
895
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
881
896
|
attr_accessor associated_portal_arns: ::Array[::String]
|
|
882
897
|
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
|
883
898
|
attr_accessor copy_allowed: ("Disabled" | "Enabled")
|
|
899
|
+
attr_accessor customer_managed_key: ::String
|
|
884
900
|
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
|
885
901
|
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
|
886
902
|
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.
|
|
4
|
+
version: 1.19.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-
|
|
11
|
+
date: 2024-04-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|